Jump to content

header problem i am getting frustrated now


truenitin

Recommended Posts

hii this is the script i am using

<?php
ob_start();
require("data_conn.php");
ob_end_flush();
?>
<?php
ob_start();
$myusername=$_POST['myusername'];
$mypassword=$_POST['mypassword'];
$sql="SELECT * FROM members where username='$myusername' and password='$mypassword'" ;
$result=mysql_query($sql);
$count=mysql_num_rows($result);
if($count==1){
//session_register("myusername");
//session_register("mypassword");
header("location:login_success.php");
}
else {
echo "Wrong Username or Password";
}
ob_end_flush();
?>


i removed the session_register because it is also giving me the same error
will sort that out when i get to the root of the problem.

I am calling the above script in the form

Nitin

Nitin

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.