RE: [PHP] phpmyadmin

2008-07-10 Thread Will Fitch
This is more of a SQL question that PHP. If you want to grant all privileges to abc to database xyz (minus GRANT), you should run these queries: CREATE DATABASE xyz; GRANT ALL PRIVILEGES ON xyz.* TO 'abc'@'somehost' IDENTIFIED BY 'somepassword'; -Original Message- From: Ronald Wiplinge

RE: [PHP] can you give me example of website using postgresql database?

2008-07-01 Thread Will Fitch
Touché, salesman. -Original Message- From: Lester Caine [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 01, 2008 10:21 AM To: php-general@lists.php.net Subject: Re: [PHP] can you give me example of website using postgresql database? Will Fitch wrote: > Assuming that a system should swi

RE: [PHP] can you give me example of website using postgresql database?

2008-07-01 Thread Will Fitch
: [PHP] can you give me example of website using postgresql database? Will Fitch wrote: > The purchase of MySQL by Sun should actually give you more comfort. They > will be able to attach more money and developers to the project. Remember, > the advantage of open-source is not just that it&#x

RE: [PHP] Re: can you give me example of website using postgresql database?

2008-07-01 Thread Will Fitch
Then in that case I agree. I develop an inherited, large-scale, in-house system that utilizes PostgreSQL. It does the job, but I can't wait until I get the time to convert it to MySQL. As with any RDMS, Postgres has its advantages: controlling sequences, aggregates, custom operators, custom ty

RE: [PHP] can you give me example of website using postgresql database?

2008-06-30 Thread Will Fitch
The purchase of MySQL by Sun should actually give you more comfort. They will be able to attach more money and developers to the project. Remember, the advantage of open-source is not just that it's free, but that you may freely modify it for your purpose (keeping in mind the restrictions of indiv

RE: [PHP] Encription

2008-06-30 Thread Will Fitch
Have you considered mcrypt then base64? -Original Message- From: Stefano Esposito [mailto:[EMAIL PROTECTED] Sent: Monday, June 30, 2008 2:37 PM To: php-general@lists.php.net Subject: [PHP] Encription Hi all, i need to encrypt a sensible string to pass it whit GET method. I need that to

RE: [PHP] SOAP - function does not exist?

2008-06-30 Thread Will Fitch
008 9:52 AM To: Will Fitch Cc: PHP General List Subject: Re: [PHP] SOAP - function does not exist? On Mon, Jun 30, 2008 at 10:48 AM, Will Fitch <[EMAIL PROTECTED]> wrote: Your WSDL is referencing a document literal service. How are you making the request? For instance, look at

RE: [PHP] SOAP - function does not exist?

2008-06-30 Thread Will Fitch
Your WSDL is referencing a document literal service. How are you making the request? For instance, look at this example: $soap = new SoapClient('some.wsdl'); $soap->getOrderHistory('somestring'); The above might not work as your document literal service (not RPC) is looking for the data in the

RE: [PHP] How to check if $string contains Hebrew characters?

2008-06-25 Thread Will Fitch
ECTED] Sent: Wednesday, June 25, 2008 12:46 PM To: Will Fitch Cc: 'Nitsan Bin-Nun'; PHP - General list Subject: Re: [PHP] How to check if $string contains Hebrew characters? or do the same but with strtr() Will Fitch wrote: > If your goal is to eventually convert Hebrew chars to s

RE: [PHP] How to check if $string contains Hebrew characters?

2008-06-25 Thread Will Fitch
If your goal is to eventually convert Hebrew chars to something else, you could just use str_replace or stri_replace and have each Hebrew char as an array element, replaced by another array element as a match. Example in English: str_replace(array('a','b','c'),array('t','u','v'),$string); Thi