Write HTML in PHP

Examples for : Write HTML in PHP

With print command , you can output HTML code inside php.

Sample code :

print("This is point to print.");

To use quotes inside print command , use \" inside code.

print("Visit Google");

With echo , html output can be done inside php.

echo "

This is HTML code inside echo syntax inside php

";

No comments:

Post a Comment