php obdc_fetch_array help please?

  • Thread starter Thread starter maito
  • Start date Start date
M

maito

Guest
need to out put the contents using OBDC.
when using mysql I would do the following

PHP Code:
while($row=mysql_fetch_array($rs))
{
echo "<tr><td>";
echo $row[ 'date' ];
echo"</td><td>";
echo $row['EventName'];
echo"</td><td>";
echo $row['webAddress'];
echo "</td></tr>";



}

when i try it using OBDC it says I am calling a undefined function
How then would I do virtually this same thing using OBDC?
 
Back
Top