3
05/11/2024 5:23 上午
主题启动器
Please help me write with HTML and PHP one PHP script to print "Hello, PHP!" Thanks!
1 答案
2
05/11/2024 5:23 上午
Here's how:
<!DOCTYPE html> <html> <head> <title>Hello PHP</title> </head> <body> <?php echo "Hello, PHP!" ?> </body> </html>