Re: [PHP-DB] how to delete

2007-06-19 Thread bedul
mean bold (use ) - Original Message - From: Asim [EMAIL PROTECTED] To: php-db@lists.php.net Sent: Tuesday, June 19, 2007 12:08 PM Subject: [PHP-DB] how to delete HI can you tell me how to delete images from HARD DISK OR WEB SPACE by using php? i have created tumbnails of some images

Re: [PHP-DB] how to delete

2007-06-19 Thread Niel Archer
Hi There is no DESTROYIMAGE() function. May be you mean imagedestroy(). If so this does NOT erase files, it destroys in memory images created using the Image functions. To erase files use the unlink function. For detail look here http://uk3.php.net/unlink Niel -- PHP Database Mailing List

[PHP-DB] how to delete

2007-06-18 Thread Asim
HI can you tell me how to delete images from HARD DISK OR WEB SPACE by using php? i have created tumbnails of some images and they are stored on HARD DISK IN PRESCRIBED FOLDER. now i use DESTROYIMAGE(); FUNCTION in php but it didnot delete crearted

[PHP-DB] How to delete specific row in mysql table?

2001-08-28 Thread Jan Grafström
Hi! I am new to this an wonder how to delete a row in my table. I have tryed with: -- DELETE FROM mytable WHERE 32 - to delete row number 3 but all rows goes away! Thanks in advance for any help. Regards Jan -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail:

RE: [PHP-DB] How to delete specific row in mysql table?

2001-08-28 Thread Rick Emery
PROTECTED] Subject: [PHP-DB] How to delete specific row in mysql table? Hi! I am new to this an wonder how to delete a row in my table. I have tryed with: -- DELETE FROM mytable WHERE 32 - to delete row number 3 but all rows goes away! Thanks in advance for any help. Regards Jan -- PHP

Re: [PHP-DB] How to delete specific row in mysql table?

2001-08-28 Thread Jason Brooke
Hi! I am new to this an wonder how to delete a row in my table. I have tryed with: -- DELETE FROM mytable WHERE 32 - to delete row number 3 but all rows goes away! Thanks in advance for any help. Regards Jan That's because the number 3 is greater than the number 2, so is