links in php
Posted: Thu Feb 19, 2004 2:39 pm
how can i give a link if a condition is true?
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
<?php
if ($condition=='True'){
echo ("<a href="http://www.google.com">link</a>")
}
?>