Computer Science, asked by vimalraj, 1 year ago

wat are the important syntax for writin calculator coding in php.

Answers

Answered by Shravani83
2
<?php
print ("I am a girl");  
?>
or

<html>
 <head>
 <title> I am a girl </title>
 </head>
 <body> <font color="red">My PHP code makes this page say:</font>
 <p>
 <?php print ("I am a girl"); ?>
 </p>
 </body>
 </html>

vimalraj: thank you....
Shravani83: welcome please see if you can mark as the best
Answered by Anonymous
0
<html> 
 <head> 
 <title> I am a girl </title> 
 </head> 
 <body> 
  <?php print ("Hello"); ?> 
 <br> 
 </body> 
 </html>

Anonymous: hope it helps
Anonymous: plz mark as best
Similar questions