3
05/11/2024 5:23 am
Inicio del tema
Please help me write with HTML and PHP one PHP script to print "Hello, PHP!" Thanks!
1 respuesta
2
05/11/2024 5:23 am
Here's how:
<!DOCTYPE html>
<html>
<head>
<title>Hello PHP</title>
</head>
<body>
<?php
echo "Hello, PHP!"
?>
</body>
</html>
