How to print hello word in php

Now you are ready to write your fist php program. Open a new file in your preferred editor. Type

<html>
<head>
<title>My first PHP program</title>
</head>
<body>
<?php
print("Hello World<br/>\n");
phpinfo();
?>
</body>
</html>


No comments:

Post a Comment

Python in AI: Getting Started with TensorFlow & PyTorch

  Artificial Intelligence (AI) is no longer just a buzzword. It powers recommendation systems, chatbots, self-driving cars, and more. At the...