Hi
Just a quickie from a newbie.
I have a confirm.php page that at present reads sometihng like
<?PHP
error_reporting(53);
session_start();
blah blah
if($thecode == $nobyebyecode){
echo("Click here to continue");
} else {
echo("sORRY yOu got That WroNg!");
}
session_destroy();
?>
I would like the two dif. output options [if and else] not to just print the report but to also offer a clickable link in each intsance but i dont know how to write the code, I`d be a tad fab if you could help advise.
Mel