Re: [PHP-DB] Connecting to two MySQL databases

2005-10-01 Thread Charles Kline
On Sep 30, 2005, at 11:51 AM, Larry E. Ullman wrote: I had this problem a while ago, when you try to create the second connection to the database with the same login credentials, i.e username and password. If mysql / php detect there is a connection already established with those details

[PHP-DB] If syntax

2005-10-01 Thread Ron Piggott
Take a look at my if ( ) syntax line below. I am wondering if I have it wrong in same way. What I am trying to achieve is if the alias the user enters is already found in the database I want the words Alias already in use to be shown on the screen; otherwise Unique alias to be shown on the

Re: [PHP-DB] If syntax

2005-10-01 Thread RaJeSh VeNkAtA
i think for unique alias u have keep alias='$alias' ?? and also if statement will always be true as the mysql statement is always correct and will be executed . U have to check the result of query for whether there r ne aliases or not ... On Sat, 1 Oct 2005, Ron Piggott wrote: Take a