Hola:
Quiero subir una imagen a la base de datos,que me guarde ésta imagen en un carpeta y la ruta en la bd.
Tengo el siguiente formulario:
<!--html--></div><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td>
HTML </td></tr><tr><td id='CODE'><!--html1--><
html>
<
body>
<
form enctype="
multipart/form-data" action="
subir_imagenes_con_ruta2.php" method="
post">
<
input type="
hidden" name="
MAX_FILE_SIZE" value="
500000">
Subir ésta foto: <
input name="
userfile" type="
file">
<
input type="
submit" value="
Subir">
<
/form>
<
/body>
<
/html><!--html2--></td></tr></table><div class='postcolor'><!--html3-->
Cuando pincho el bóton de enviar me aparece éste error:
Warning: copy(con_ruta/): failed to open stream: Permission denied in
Mi código php es el siguiente:
<?php
if (is_uploaded_file($HTTP_POST_FILES['userfile']['tmp_name']))
{
copy($HTTP_POST_FILES['userfile']['tmp_name'],"con_ruta/");
}
else
{
echo "Psible file upload atrrack. Filename: " . $HTTP_POST_FILES['userfile']['name'];
}
?>
¿Alguien puede decirme porque me da el error?
Muchas gracias
Saludos: