Re: [PHP] Connecting PHP to a remote mysql database

2002-01-08 Thread Miles Thompson
Check tutorials at Thickbook, WebMonkey, DevShed, etc. and the manual. Asking this question indicates you haven't taken the first critical step yourself. So I searched the php site for 1. "connect", 12 hits, including one explicitly for mysql. 2. "database", 12 hits, none for mysql, but close

Re: [PHP] Connecting PHP to a remote mysql database

2002-01-08 Thread Henning Sprang
Félix García Renedo wrote: > Sorry, > I have an mistake. > I want to configure php to connect to a remote mysql database and I want > the options to configure php. in configure it makes AFAIK no difference if you will be connecting to a local or remote mysql db. just use "--with

Re: [PHP] Connecting PHP to a remote mysql database

2002-01-08 Thread Henning Sprang
Hy, Félix García Renedo wrote: > Hello, > How could I configure php to access to a remote mysql database? just use the correct hostname of your remote host in mysql_pconnect( "HOST", "USER", "PASS"); henning -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail:

[PHP] Connecting PHP to a remote mysql database

2002-01-08 Thread Félix García Renedo
Hello, How could I configure php to access to a remote mysql database? Thanks