Hi all,
I have this source code, but i instead of the echo's command , I want to put a link to web page.
How can I do that?
SOURCE:
<?php
session_start();
if ($_POST[vercode] != $_SESSION[vercode] OR $_SESSION[vercode]=="") {
echo "<strong>Incorrect verification code.</strong><br>";
} else {
echo "<strong>correct verification code.</strong><br>";
};
?>
Thanks!
Web link in PHP
Moderator: General Moderators
- Frozenlight777
- Forum Commoner
- Posts: 75
- Joined: Wed May 28, 2008 12:59 pm
Re: Web link in PHP
Frozenlight777 wrote:Easier than you would think... check out the header function
http://us2.php.net/header
Pretty easy... ehehe
Thanks!