[PHP] Re: [PHP-DEV] Is PHP designed (have the capability) to access remote DB?

2003-03-12 Thread Patrick LOK
IT IS ABOUT THE DESIGN AND DEVELOPMENT OF PHP



Derick Rethans [EMAIL PROTECTED] wrote in message
news:[EMAIL PROTECTED]
 Stop posting user questions to the php-dev and php5-dev list, as I
 explained before.

 Derick

 On Wed, 12 Mar 2003, Patrick LOK wrote:

  Is PHP designed (have the capability) to access remote DB?
 
  Is there any PHP developer willing to answer the question?
 
  ./pl
 

 --
 my other box is your windows PC
 -
  Derick Rethans http://derickrethans.nl/
  PHP Magazine - PHP Magazine for Professionals   http://php-mag.net/
 -



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] Re: [PHP-DEV] Is PHP designed (have the capability) to access remote DB?

2003-03-12 Thread Clint Tredway
No its not. PHP does the same thing that ASP, ColdFusion, or JSP does in the
way of connecting to a databse. They can all access a database that is not
on the localhost. It is not about the design and development of PHP.

-Original Message-
From: Patrick LOK [mailto:[EMAIL PROTECTED]
Sent: Wednesday, March 12, 2003 7:33 AM
To: [EMAIL PROTECTED]
Subject: [PHP] Re: [PHP-DEV] Is PHP designed (have the capability) to
access remote DB?


IT IS ABOUT THE DESIGN AND DEVELOPMENT OF PHP



Derick Rethans [EMAIL PROTECTED] wrote in message
news:[EMAIL PROTECTED]
 Stop posting user questions to the php-dev and php5-dev list, as I
 explained before.

 Derick

 On Wed, 12 Mar 2003, Patrick LOK wrote:

  Is PHP designed (have the capability) to access remote DB?
 
  Is there any PHP developer willing to answer the question?
 
  ./pl
 

 --
 my other box is your windows PC
 -
  Derick Rethans http://derickrethans.nl/
  PHP Magazine - PHP Magazine for Professionals   http://php-mag.net/
 -



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] Re: [PHP-DEV] Is PHP designed (have the capability) to access remote DB?

2003-03-12 Thread Niklas Lampén
You said before you got a odbc connection to your remote db = remote
connections are possible.

The problem is in:

a) db configuration
b) your way of trying to connect to db
c) your firewall
d) remote firewall
e) all above


Niklas


-Original Message-
From: Patrick LOK [mailto:[EMAIL PROTECTED] 
Sent: 12. maaliskuuta 2003 15:33
To: [EMAIL PROTECTED]
Subject: [PHP] Re: [PHP-DEV] Is PHP designed (have the capability) to access
remote DB?


IT IS ABOUT THE DESIGN AND DEVELOPMENT OF PHP



Derick Rethans [EMAIL PROTECTED] wrote in message
news:[EMAIL PROTECTED]
 Stop posting user questions to the php-dev and php5-dev list, as I 
 explained before.

 Derick

 On Wed, 12 Mar 2003, Patrick LOK wrote:

  Is PHP designed (have the capability) to access remote DB?
 
  Is there any PHP developer willing to answer the question?
 
  ./pl
 

 --
 my other box is your windows 
 PC
 -
  Derick Rethans http://derickrethans.nl/
  PHP Magazine - PHP Magazine for Professionals   http://php-mag.net/
 -



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

###
This message has been scanned by F-Secure Anti-Virus for Internet Mail. For
more information, connect to http://www.F-Secure.com/

###
This message has been scanned by F-Secure Anti-Virus for Internet Mail.
For more information, connect to http://www.F-Secure.com/

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Re: [PHP-DEV] Is PHP designed (have the capability) to access remote DB?

2003-03-12 Thread Patrick LOK
I tried mssql_connect  pgsql_connect to remote db but never connected!
I have searched thru. the manual and QA but can't find an answer.
Any tips?
./pl


Clint Tredway [EMAIL PROTECTED] wrote in message
news:[EMAIL PROTECTED]
 No its not. PHP does the same thing that ASP, ColdFusion, or JSP does in
the
 way of connecting to a databse. They can all access a database that is not
 on the localhost. It is not about the design and development of PHP.

 -Original Message-
 From: Patrick LOK [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, March 12, 2003 7:33 AM
 To: [EMAIL PROTECTED]
 Subject: [PHP] Re: [PHP-DEV] Is PHP designed (have the capability) to
 access remote DB?


 IT IS ABOUT THE DESIGN AND DEVELOPMENT OF PHP



 Derick Rethans [EMAIL PROTECTED] wrote in message
 news:[EMAIL PROTECTED]
  Stop posting user questions to the php-dev and php5-dev list, as I
  explained before.
 
  Derick
 
  On Wed, 12 Mar 2003, Patrick LOK wrote:
 
   Is PHP designed (have the capability) to access remote DB?
  
   Is there any PHP developer willing to answer the question?
  
   ./pl
  
 
  --
  my other box is your windows
PC

 -
   Derick Rethans http://derickrethans.nl/
   PHP Magazine - PHP Magazine for Professionals   http://php-mag.net/

 -



 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] Re: [PHP-DEV] Is PHP designed (have the capability) to access remote DB?

2003-03-12 Thread Clint Tredway
Like the previous poster said.. its in you configuration.. can your
webserver actually see(connect to in another way) to the server where your
database is?

If not, then you will have to figure that out first.

Clint

-Original Message-
From: Patrick LOK [mailto:[EMAIL PROTECTED]
Sent: Wednesday, March 12, 2003 7:44 AM
To: [EMAIL PROTECTED]
Subject: Re: [PHP] Re: [PHP-DEV] Is PHP designed (have the capability)
to access remote DB?


I tried mssql_connect  pgsql_connect to remote db but never connected!
I have searched thru. the manual and QA but can't find an answer.
Any tips?
./pl


Clint Tredway [EMAIL PROTECTED] wrote in message
news:[EMAIL PROTECTED]
 No its not. PHP does the same thing that ASP, ColdFusion, or JSP does in
the
 way of connecting to a databse. They can all access a database that is not
 on the localhost. It is not about the design and development of PHP.

 -Original Message-
 From: Patrick LOK [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, March 12, 2003 7:33 AM
 To: [EMAIL PROTECTED]
 Subject: [PHP] Re: [PHP-DEV] Is PHP designed (have the capability) to
 access remote DB?


 IT IS ABOUT THE DESIGN AND DEVELOPMENT OF PHP



 Derick Rethans [EMAIL PROTECTED] wrote in message
 news:[EMAIL PROTECTED]
  Stop posting user questions to the php-dev and php5-dev list, as I
  explained before.
 
  Derick
 
  On Wed, 12 Mar 2003, Patrick LOK wrote:
 
   Is PHP designed (have the capability) to access remote DB?
  
   Is there any PHP developer willing to answer the question?
  
   ./pl
  
 
  --
  my other box is your windows
PC

 -
   Derick Rethans http://derickrethans.nl/
   PHP Magazine - PHP Magazine for Professionals   http://php-mag.net/

 -



 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Re: [PHP-DEV] Is PHP designed (have the capability) to access remote DB?

2003-03-12 Thread Patrick LOK
Well... just what _connect required! servername, userid, password.  What
else?

any tips?
./pl


Niklas lampén [EMAIL PROTECTED] wrote in message
news:[EMAIL PROTECTED]
You said before you got a odbc connection to your remote db = remote
connections are possible.

The problem is in:

a) db configuration
b) your way of trying to connect to db
c) your firewall
d) remote firewall
e) all above


Niklas


-Original Message-
From: Patrick LOK [mailto:[EMAIL PROTECTED]
Sent: 12. maaliskuuta 2003 15:33
To: [EMAIL PROTECTED]
Subject: [PHP] Re: [PHP-DEV] Is PHP designed (have the capability) to access
remote DB?


IT IS ABOUT THE DESIGN AND DEVELOPMENT OF PHP



Derick Rethans [EMAIL PROTECTED] wrote in message
news:[EMAIL PROTECTED]
 Stop posting user questions to the php-dev and php5-dev list, as I
 explained before.

 Derick

 On Wed, 12 Mar 2003, Patrick LOK wrote:

  Is PHP designed (have the capability) to access remote DB?
 
  Is there any PHP developer willing to answer the question?
 
  ./pl
 

 --
 my other box is your windows
 PC
 -
  Derick Rethans http://derickrethans.nl/
  PHP Magazine - PHP Magazine for Professionals   http://php-mag.net/
 -



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

###
This message has been scanned by F-Secure Anti-Virus for Internet Mail. For
more information, connect to http://www.F-Secure.com/

###
This message has been scanned by F-Secure Anti-Virus for Internet Mail.
For more information, connect to http://www.F-Secure.com/



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] Re: [PHP-DEV] Is PHP designed (have the capability) to access remote DB?

2003-03-12 Thread Clint Tredway
I am willing to help you.. what kind of database are you trying to connect
to?

-Original Message-
From: Patrick LOK [mailto:[EMAIL PROTECTED]
Sent: Wednesday, March 12, 2003 7:48 AM
To: [EMAIL PROTECTED]
Subject: Re: [PHP] Re: [PHP-DEV] Is PHP designed (have the capability)
to access remote DB?


Well... just what _connect required! servername, userid, password.  What
else?

any tips?
./pl


Niklas lampén [EMAIL PROTECTED] wrote in message
news:[EMAIL PROTECTED]
You said before you got a odbc connection to your remote db = remote
connections are possible.

The problem is in:

a) db configuration
b) your way of trying to connect to db
c) your firewall
d) remote firewall
e) all above


Niklas


-Original Message-
From: Patrick LOK [mailto:[EMAIL PROTECTED]
Sent: 12. maaliskuuta 2003 15:33
To: [EMAIL PROTECTED]
Subject: [PHP] Re: [PHP-DEV] Is PHP designed (have the capability) to access
remote DB?


IT IS ABOUT THE DESIGN AND DEVELOPMENT OF PHP



Derick Rethans [EMAIL PROTECTED] wrote in message
news:[EMAIL PROTECTED]
 Stop posting user questions to the php-dev and php5-dev list, as I
 explained before.

 Derick

 On Wed, 12 Mar 2003, Patrick LOK wrote:

  Is PHP designed (have the capability) to access remote DB?
 
  Is there any PHP developer willing to answer the question?
 
  ./pl
 

 --
 my other box is your windows
 PC
 -
  Derick Rethans http://derickrethans.nl/
  PHP Magazine - PHP Magazine for Professionals   http://php-mag.net/
 -



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

###
This message has been scanned by F-Secure Anti-Virus for Internet Mail. For
more information, connect to http://www.F-Secure.com/

###
This message has been scanned by F-Secure Anti-Virus for Internet Mail.
For more information, connect to http://www.F-Secure.com/



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php