Hi,
I am having trouble registering a row from a mysql query
so far I have the mysql part working :
while ( $val = mysql_fetch_arr ay( $result ))
{
print("<tr><td> $val[0]</td>
<td>$val[1]</td>
<td>$val[2]</td>
<td>$val[3]</td>
<td>$val[4]</td>
</tr>\n");
}
But, getting these fields into an array for which to register these is a bit
of a problem
any help would be appreciated, as soon as I do the fetch and priint them out
these fields seem lost to the world.
Thanks
Bob
Thanks
I am having trouble registering a row from a mysql query
so far I have the mysql part working :
while ( $val = mysql_fetch_arr ay( $result ))
{
print("<tr><td> $val[0]</td>
<td>$val[1]</td>
<td>$val[2]</td>
<td>$val[3]</td>
<td>$val[4]</td>
</tr>\n");
}
But, getting these fields into an array for which to register these is a bit
of a problem
any help would be appreciated, as soon as I do the fetch and priint them out
these fields seem lost to the world.
Thanks
Bob
Thanks
Comment