Hi guys,

I have this code to verify the login of a certain user. What I want is when the login succedd it will load another page.

PHP Code:
<?php
if(verify($name,$pass)!=1) echo "User Name or password is incorrect!";
else{
echo 
"Welcome: $name";
//Call here the page. mypage.php

?>
How can I do that?