why it is not working

Go4Expert Member
27Sep2009,01:15   #1
anchitjindal07's Avatar
$selct="SELECT * FROM stu_info";

$result=mysql_query($selct,$status);
while($row = mysql_fetch_array('$result',MYSQL_BOTH))
{
echo $row['Name'],$row['Father s Name'],$row['Address'],$row['Date of birth'],$row['Course'],$row['Branch'],$row['Batch'],$row['Roll No.'],$row['Univ. Reg. No.'],$row['Gender'];
echo "<br />";
}

Above code is giving following Warning:

Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in C:\Program Files\EasyPHP 3.0\www\process.php on line 44

Plz help
Invasive contributor
27Sep2009,21:45   #2
nimesh's Avatar
I think here's the mistake:
$result will go without quotes in mysql_fetch_array()

while($row = mysql_fetch_array($result,MYSQL_BOTH))

http://in2.php.net/manual/en/functio...etch-array.php
Go4Expert Member
27Sep2009,22:18   #3
anchitjindal07's Avatar
But the same warning is still there
Invasive contributor
28Sep2009,20:17   #4
nimesh's Avatar
Sorry, I don't know php, so can't help much

Maybe some expert would be able to help you.

Shabbir: Can you check this one?
Go4Expert Founder
29Sep2009,11:36   #5
shabbir's Avatar
$result is a variable which is passed in quotes for the function. Try removing the single quotes and see what happens.