Write and Run PHP with HTML

by Yang Yang on January 19, 2009

Share This Article:
Subscribe to Kavoir: blog feed

Pure HTML is static text files with dead content that want everything but to change. However by the help of a service scripting language such as PHP, HTML can be dynamic and changes every time you make a different request to the server.

PHP is born with HTML rendering in mind. So it’s plain easy to write PHP from inside HTML. Just use:

<?php //php code goes here ?>

For example, we have a variable named $url to be the URL address of a web document, let’s run and present it inside with HTML so that the client browser gets the actual value dynamically:

<a href="<?php echo $url; ?>">pricing table</a>

There you go. To run PHP around HTML, just enclose the code with <?php … ?>.

Share This Article:
Subscribe to Kavoir: blog feed

You should also read:

{ 1 comment… read it below or add one }

guhan January 12, 2011 at 4:58 pm

It is helpful when i want to insert mail functionality to my site pages.

Reply

Leave a Comment

{ 1 trackback }

Previous post:

Next post: