Posts

Showing posts from July, 2020

Print String value in PHP

Print any string value in PHP <?php $name  = "Harry" ;  echo $name; ?>

First PHP Code

Image
How to write first PHP Code/ How to print Hello World in PHP. <?php echo "Hello World" ; ?> Output= Hello World Sample image with Output: Output: