Re: [PHP-DB] upload images

[email protected] (Karl DeSaulniers)
Newsgroups php.db
Message-ID <[email protected]>
Try this
Try assigning time() to a variable then add that to the rename.

EG:

if ($_FILES['foto']['type'] == "image/jpeg" ||
$_FILES['foto']['type'] == "image/pjpeg"){
			//nombre de la imagen
			$timestamp = time();
			//movemos la imagen.
			move_uploaded_file($_FILES['foto']['tmp_name'],
"../fotografias/".$timestamp.".jpg");

HTH,
>

Karl DeSaulniers
Design Drumm
http://designdrumm.com
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.