settingsAccountsettings
By using our mini forum, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy
Menusettings

Q: How to print "Hello, PHP!" in PHP?

+5 votes

Please help me write with HTML and PHP one PHP script to print "Hello, PHP!" Thanks!

asked in PHP category by user ak47seo

1 Answer

+2 votes

Here's how:

<!DOCTYPE html>
<html>
<head>
    <title>Hello PHP</title>
</head>
<body>
<?php
echo "Hello, PHP!"
?>
</body>
</html>

 

answered by user andrew
...