Quote:
Originally Posted by healdem
so where do you expect to 'print' the other data
what are those columns called
what is the function print_secure_content();
'all' you need to do is add the columns to your exsiting output
|
Code:
$sql="select * from users where name='$_GET[userlogin]' and password='$_GET[password]'";
$result=mysql_query($sql,$conn) or die(mysql_error());
return mysql_num_rows($result);
this checks the result of username and passwords
but i want to print data agianst that user name suppose i choose
google as username
so it outputs the data of google like google username city and cell number so tell me what i try
$return=mysql_num_rows($result);
echo $return[city];
but nothing output