On Fri, May 23, 2008 at 10:37 AM, arun gupta <[EMAIL PROTECTED]> wrote: > HOW to call mysql procedure in PHP?? > pls. reply ASAP
You should have a look in the php manual at the mysql functions: http://uk.php.net/manual/en/ref.mysql.php For example, to perform a simply query you use: mysql_query('SELECT 1'); You will also need to look at mysql_connect and mysql_select_db to connect to the database, and the mysql_fetch_ functions to retrieve results. Regards, Phill Sparks http://milk-hub.net