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>
