its neither giving me error in mysql_error nor its printing anything..
<?php
$con=mysql_connect("localhost","root","tiger") or die(mysql_error);
mysql_select_db("signup");
$result = "SELECT User, Host FROM mysql.user WHERE User = 'justsignup_zzl'";
if(!mysql_query($result))
{
echo mysql_error();
}
else
{
echo "aaa";
$result1=mysql_query($result);
while($row=mysql_fetch_array($result1))
{
echo "bbbb";
echo $row['User'];
echo $row['Host'];
}
}
mysql_close();
?>