problem in moving index to starting place
Posted: Fri Oct 07, 2005 12:54 am
when i have used
$res = mysql_query($qry);
while($row = mysql_fetch_bject($res))
{
$row -> val1
}
at end when has fetched all the values i want to move result index at start
i mean i want to fetch all the vales again but with out again using "$res = mysql_query($qry);"
$res = mysql_query($qry);
while($row = mysql_fetch_bject($res))
{
$row -> val1
}
at end when has fetched all the values i want to move result index at start
i mean i want to fetch all the vales again but with out again using "$res = mysql_query($qry);"