Jump to content

header redirect problem


vzwhaley

Recommended Posts

Can anyone tell me why the following code will not redirect to the page when the recordset is true?

[code]  $sql = "SELECT Username, Pass, Security FROM Admin WHERE Username = '$Username' AND Pass = '$Password'";
  $RS = mysql_query($sql);

  $num = mysql_num_rows($RS);
  
  if ($num != 0) {
  $redirectLoginSuccess = "default.php";
  $_SESSION['Username'] = $RSLogin['Username'];
  $_SESSION['Security'] = $RSLogin['Security'];
  
  header("Location: ".$redirectLoginSuccess);
  
  }[/code]
Link to comment
https://forums.phpfreaks.com/topic/3848-header-redirect-problem/
Share on other sites

--Sometimes the header requires a fully qualified url to work: [a href=\"http://domainname.com/directory/file.php\" target=\"_blank\"]http://domainname.com/directory/file.php[/a]
--you're safer if you always use a fully qualified url with the header. I'm not sure if this is a browser issue or a server host issue.
Link to comment
https://forums.phpfreaks.com/topic/3848-header-redirect-problem/#findComment-13450
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.