Jason Whitaker wrote: > OK, I need to know is there a place where i can find out how to pull > information(TEXT) from a MySQL DB table and print where i place a variable > in a php page?
I have NO idea what your question is... did you just want to echo something from your MySQL db table inside a PHP script? if so... you'd just connect with a mysql_pconnect to your server, do a query, then do a fetch of some sort... and the fetch probably will be read into an array. Then you just do an echo on that array. You can look at the mysql functions at php.net for more details I'm sure. Hope this helps - if not, please clarify your question! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php