[PHP] Image and PHP

2005-04-14 Thread Mario de Frutos Dieguez
I have a page where i place an image but i want when i show the image delete it. How can i do this? -- Mario de Frutos Dieguez División de Ingeniería del Software y Comunicaciones CARTIF -Parque Tecnológico Boecillo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] Image and PHP

2005-04-14 Thread Petar Nedyalkov
On Thursday 14 April 2005 10:06, Mario de Frutos Dieguez wrote: I have a page where i place an image but i want when i show the image delete it. How can i do this? You want to delete it from the clients machine or what? -- Mario de Frutos Dieguez División de Ingeniería del Software y

Re: [PHP] Image and PHP

2005-04-14 Thread Mario de Frutos Dieguez
Petar Nedyalkov escribió: On Thursday 14 April 2005 10:06, Mario de Frutos Dieguez wrote: I have a page where i place an image but i want when i show the image delete it. How can i do this? You want to delete it from the clients machine or what? -- Mario de Frutos Dieguez División de

Re: [PHP] Image and PHP

2005-04-14 Thread Erwin Kerk
. somethinglike: img src=script_that_show_image_and_deletes_it.php?image=ladieda.jpg / Erwin Kerk -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Image and PHP

2005-04-14 Thread YaronKh
PROTECTED] Cc: php-general@lists.php.net Subject: Re: [PHP] Image and PHP Petar Nedyalkov escribi: On Thursday 14 April 2005 10:06, Mario de Frutos Dieguez wrote: I have a page where i place an image but i want when i show the image delete it. How can i do this? You want to delete

RE: [PHP] Image and PHP -Correction

2005-04-14 Thread YaronKh
To: 'Mario de Frutos Dieguez'; [EMAIL PROTECTED] Cc: php-general@lists.php.net Subject: RE: [PHP] Image and PHP Hi Mario you can use something like img src=blabla.jpg ONLOAD=delete_pic.php?fn=blabla.jpg And in delete_pic.php write something like: unlink ($_GET['fn']); -Original Message

RE: [PHP] Image and PHP

2005-04-14 Thread Mike
I have a page where i place an image but i want when i show the image delete it. How can i do this? What I would probably do is create a cleanup function/class in the script that gets a list of all the images in the directory in question and deletes anything that more then, say, an hour

Re: [PHP] Image and PHP

2005-04-14 Thread -k.
--- Mario de Frutos Dieguez [EMAIL PROTECTED] wrote: I have a page where i place an image but i want when i show the image delete it. How can i do this? Some good suggestions so far but to be a little more explicit this is how you would do it. Essentially you want to have your image tag point

[PHP] image through php

2001-01-11 Thread mailing_list
Hi! I want to use a code like: img src="./randomgif.php" I know, this is possible with perl, but with php? ... and it should be performant as well :-) !! thanks any hints appreciated witty -- Sent through GMX FreeMail - http://www.gmx.net -- PHP General Mailing List (http://www.php.net/)