hi, trying to build a login code, getting the error Warning: Cannot modify header information - headers already sent by, heres my code... it seems not to like my header line?
$resultOne = mysql_query("SELECT * FROM Employee WHERE username ='$username' AND password ='$password'",$db);
$numOne=mysql_numrows($resultOne);
$myrow = mysql_fetch_array($resultOne);
if($numOne!=0){
header("Location: www.google.com");
thank you