well, i kinda have it working,sorta of
after a successful login I do have the pop up window working...but, i get a 404, its looking for the url 'page' which is my coloum name.. how do I get the field(in my 'page' coloum) that has the url in it to my pop up?
thank you!
my php :
$result= mysql_query("SELECT * FROM users WHERE username='$username' AND password='$password'");
$row=mysql_fetch_array($result);
if ($result > 1){
echo "<html><head><script language=JAVASCRIPT>";
echo "window.open('$page','newwin','toolbar=0,scrollbars=1,status=1,location=0,menubar=1,width=800,height=600');";
echo "</script></head>";
}
}