[PHP] get results twice for UPDATE and INSERT

2002-06-12 Thread Tommi Trinkaus

Hi everybody,

i installed php(4.2)/mysql(2.2.3) on my local server and when i send a query
using UPDATE or INSERT to the database, i almost got the results twice.
When i put the same Database on a public webserver (hosteurope), everythin
works fine.
What is the mistake?

thank you for any answer, tommi



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




Re: [PHP] get results twice for UPDATE and INSERT

2002-06-12 Thread Analysis Solutions

Hi Tommi:

On Wed, Jun 12, 2002 at 10:54:16AM +0200, Tommi Trinkaus wrote:
 
 i installed php(4.2)/mysql(2.2.3) on my local server and when i send a query
 using UPDATE or INSERT to the database, i almost got the results twice.
 When i put the same Database on a public webserver (hosteurope), everythin
 works fine.

Without seeing your script, allow me to guess.  Register_globals is turned
on for the public webserver and turned off on your local server.  Then,
you have some control/conditional statement or something that doesn't take
that into consideration, so the condition evaluates to true/false twice, 
so it executes the query twice.

And, no, at this point, don't show us the code.  Check out what I'm
talking about regarding register_globals, carefully examine and then test
your code.

--Dan

-- 
   PHP classes that make web design easier
SQL Solution  |   Layout Solution   |  Form Solution
sqlsolution.info  | layoutsolution.info |  formsolution.info
 T H E   A N A L Y S I S   A N D   S O L U T I O N S   C O M P A N Y
 4015 7 Av #4AJ, Brooklyn NY v: 718-854-0335 f: 718-854-0409

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