monster bob Posted October 10, 2006 Posted October 10, 2006 I'm looking for some basic instruction on creating a SQL/ODBC query from a web page. Below is sample from the ODBC/JDBC forum using PHP. Mostly I am uncertain how to code the client location. I am also unfamiliar with how the remaining objects need to be coded(odbc_exec,odbc_fetch etc.). What I really need is a simple primer or tutorial on connecting to FileMaker ODBC data via the web using SQL. Can anyone help? PHP example: <?php $conn = odbc_pconnect(client, user, password); $sql = 'SELECT * FROM Companies WHERE clientnumber=10100'; $rs = odbc_exec($conn, $sql); $row = odbc_fetch_array($rs); print_r($row); ?>
Martin Brändle Posted October 11, 2006 Posted October 11, 2006 (edited) Wrong forum. Please post either in the PHP or the ODBC / JDBC forum. Ok. This is now in the correct forum Edited October 12, 2006 by Guest Moved from XML/XSLT
Recommended Posts
This topic is 6616 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now