Re: [PHP] Need help

2003-12-03 Thread Thorsten Körner
ptive subject for your questions CU Thorsten - -- Thorsten Körner | http://www.123tkShop.org openSource e-Commerce | http://www.123tk.com -BEGIN PGP SIGNATURE- Version: GnuPG v1.2.2 (GNU/Linux) iD8DBQE/zeY/s5R35vLkl/cRAk5+AKCp0qwutyAemO1ePf0DyrahKwEAXgCgoM4u 4q909NO

Re: [PHP] Capturing $_POST variables

2003-11-28 Thread Thorsten Körner
ta again to third page you can do this foreach ($_POST as $key => $value) { echo ""; } Another way is the following: $postData = $_POST; echo ""; CU Thorsten - -- Thorsten Körner | http://www.123tkShop.org openSource e-Commerce | http:

Re: [PHP] MySQL Query

2003-06-30 Thread Thorsten Körner
t; AND > pwd = "$_POST['pass']""; You have forgotten to set the 'dots' 8-) $sql1 = "SELECT * from `admin` where `admin`.user = '" . $_POST['validuser'] . "' - --^^^^-^ AND `admin`.pwd = '&q

Re: [PHP] Can't pass query string from HTML to PHP

2003-06-20 Thread Thorsten Körner
Hi again Am Freitag, 20. Juni 2003 11:47 schrieb Thorsten Körner: > Am Freitag, 20. Juni 2003 08:06 schrieb Robby Ku: > > Hi, > > > > I've got a problem passing a query string from a HTML file to a PHP file. > > I created a HTML file called "

Re: [PHP] Can't pass query string from HTML to PHP

2003-06-20 Thread Thorsten Körner
leave your php.ini with: register_globals=off > > After i load "welcome.html" in my browser, i try linking it to > "welcome.php" through the hyperlink i created. But the result i got was > > "Welcome, !" "Welcome, Andy!" ;-) CU Thors

Re: [PHP] How to UPDATE only certain fields

2003-06-19 Thread Thorsten Körner
27;someNewGrape' WHERE id = '$id' This updates only the grape-field and leaves everything else as is. CU Thorsten -- Thorsten Körner http://www.123tkShop.org -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php