Ok iv got this query and If i try passing a varible in the way below it fails to come up as the result.
$query ='SELECT `Email` '
. ' FROM `user_info` '
. ' WHERE `Email` = \'.$user_name.\' AND `pass` = \'.$passw.\' LIMIT 0, 30';
where if i check the varibles with an echo the results im gettign is good also if i put the varibles directly into the uquery it works fine with the code below.
$query ='SELECT `Email` '
. ' FROM `user_info` '
. ' WHERE `Email` = \'voppex@hotmail.com\' AND `pass` = \'footbal\' LIMIT 0, 30';
can some one see a error in the first one becuse i am really looking for somehting that gives me
mysql_num_rows($result) == 1
N/a I have set my password to have a fulltext property and its size is 7 digits can some one explain to me what fulltext means.