PHP
PHP stands for Hypertext Preprocessor. It is a popular server-side scripting language that is used to create dynamic web pages.
PHP sample code
<!DOCTYPE html> <html> <body> <?php $name = "Keerthi"; echo "My name is " . $name . "<br />"; echo "Today date: " . date('d-m-Y'); ?> </body> </html>