Connecting Tech Pros Worldwide Help | Site Map

please help for beginner(php + ms access)

  #1  
Old July 17th, 2005, 02:30 PM
peterlai@rotiprata.net
Guest
 
Posts: n/a
<html>
<head>
</head>

<body><pre>
<?php

$connection =
odbc_connect("test","root","passwd");

$query = odbc_exec($connection, "SELECT * FROM
People");

while ($row = odbc_fetch_row($result))
{
for ($i=0; $i<odbc_num_fields($result);$i++)
echo $row[$i] . " ";

echo "\n";
}

odbc_close($connection);
?>
</pre>
</body>
</html>
I got an error msg
Notice: Undefined variable: result in C:\Apache2\htdocs\test3.php on
line 14

Warning: odbc_fetch_row(): supplied argument is not a valid ODBC
result resource in C:\Apache2\htdocs\test3.php on line 14

thank in adv

  #2  
Old July 17th, 2005, 02:30 PM
mattvenables
Guest
 
Posts: n/a

re: please help for beginner(php + ms access)


that's because you never defined the variable $result that you are
sending to the odbc_fetch_row function. try changing it to this:

while ($row = odbc_fetch_row($query))

  #3  
Old July 17th, 2005, 02:30 PM
Tony
Guest
 
Posts: n/a

re: please help for beginner(php + ms access)



"mattvenables" <mattvenables@gmail.com> wrote in message
news:1118146126.870262.314520@g14g2000cwa.googlegr oups.com...[color=blue]
> that's because you never defined the variable $result that you are
> sending to the odbc_fetch_row function. try changing it to this:
>
> while ($row = odbc_fetch_row($query))
>[/color]

or:

$result = odbc_exec($connection, "SELECT * FROM
People");

since '$result' is used twice (it's also in the loop at "for ($i=0;
$i<odbc_num_fields($result);$i++)" )



Closed Thread


Similar Threads
Thread Thread Starter Forum Replies Last Post
Links to useful sites msquared answers 0 November 12th, 2006 10:58 PM
Why Web Programming is so Challenging and Different Frankie answers 18 November 19th, 2005 07:57 PM
Why doesn't strrstr() exist? Christopher Benson-Manica answers 149 November 15th, 2005 03:33 AM
Object test = new Object() <-- Java, best way in C++ DrUg13 answers 11 July 22nd, 2005 07:06 AM