[PHP-DB] PHP 5.2.6 integrating MYSQL 5.0.51b on APACHE 2.0.63 + Windows XP SP2)

2008-05-13 Thread Jeff88
Hi, Good Day! I have problem in getting the PHP 5.2.6 to integrate with MYSQL 5.0.51b. I had done the following installations and configurations on Windows XP (SP2): 1. Installed APACHE 2.0.63 - running fine 2. Installed PHP 5.2.6 - running fine 3. Configured httpd.conf and php.ini - PHP and

[PHP-DB] synchronizing/replicating MySQL servers

2008-05-13 Thread Yves Sucaet
Hello, We have several PHP applications that run on the same server. We'd like to split them up over two servers. Can somebody help me get started to set up a replicated MySQL installation? I'd like to host the same DB on both machines, and so when one updates the other should update etc...

Re: [PHP-DB] synchronizing/replicating MySQL servers

2008-05-13 Thread Chris
Yves Sucaet wrote: Hello, We have several PHP applications that run on the same server. We'd like to split them up over two servers. Can somebody help me get started to set up a replicated MySQL installation? I'd like to host the same DB on both machines, and so when one updates the

Re: [PHP-DB] PHP 5.2.6 integrating MYSQL 5.0.51b on APACHE 2.0.63 + Windows XP SP2)

2008-05-13 Thread Chris
Jeff88 wrote: Hi, Good Day! I have problem in getting the PHP 5.2.6 to integrate with MYSQL 5.0.51b. I had done the following installations and configurations on Windows XP (SP2): 1. Installed APACHE 2.0.63 - running fine 2. Installed PHP 5.2.6 - running fine 3. Configured httpd.conf

[PHP-DB] Saving an array to a mySQL table

2008-05-13 Thread Ron Piggott
I am writing a shopping cart. I am now ready to take the order from being in a session variable $_SESSION['product_selected'][$product_reference_number] to store it into the orders table. While the products selected are being displayed in a loop I have the piece of code $final_order .=

[PHP-DB] Re: Saving an array to a mySQL table

2008-05-13 Thread Ron Piggott
If I wasn't clear I am trying to figure out how to save an array in a mySQL table, both the array and it's value ... in this instance the product reference and the quantity the customer has decided on. Ron On Tue, 2008-05-13 at 23:11 -0400, Ron Piggott wrote: I am writing a shopping cart. I am

Re: [PHP-DB] Saving an array to a mySQL table

2008-05-13 Thread Chris
Ron Piggott wrote: I am writing a shopping cart. I am now ready to take the order from being in a session variable $_SESSION['product_selected'][$product_reference_number] to store it into the orders table. While the products selected are being displayed in a loop I have the piece of