RE: [PHP] Whimper, help :)

2002-12-04 Thread Keith Sauvant
Like I said, I can run the same SQL in PHPMyAdmin... Be careful when testing SQL statements containing (double)quotes in PHPMyAdmin, as I remember, it automatically masks them! Try the same statement on mysqls commandline. Good luck Keith -- PHP General Mailing List (http://www.php.net/) To

RE: [PHP] Problem uploading files other than text/plain ones

2002-12-02 Thread Keith Sauvant
You know about the php.ini option upload_max_filesize? Perhaps its default value is not enough for your task? Greeting from Keith Aachen, Germany -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Confirm message box

2002-11-27 Thread Keith Sauvant
Hi Wilmar, And when the user hits the Delete link a pop up dialog box (javascript style) asks for confirmation. Not a big deal. Your PHP script has to generate Links like: a href=myscript.php?del=xy onClick=return confirm('really delete?')delete/a where xy is the id of your record. The link