Is this possible? Here's the code for what I'm trying to do:
<?php if ($rnd == 1) {
echo <a href="pics.php?rnd= $_GET['rnd'] + 1">;
}
?>
Basically, if a variable sent to the page is more than or equal to a certain number, it will change a word to a hyperlink. If it's zero or less, it will just look like text.
Thanks for the help.