I have this php script :
<? if ($_REQUEST['send_pic']=="ok") {
$a=$_REQUEST['adm']['up_pic'];
echo $a;
$f=$_FILES[$a]['name'];
$ext=explode(".",$f);
print "ok"; print $f;
$id_pic_personal=date("dmYHis");
$f=str_replace("$f","".$id_pic_personal.".".strtolower($ext[1])."",$f);
@move_uploaded_file($_FILES['up_pic']['tmp_name'], $dir_up."".$f."" );
} ?>
The problem i have , it´s with my field called adm[up_pic]
This field use it into function , detect the kind of field and insert input file for upload , the problem it´s i dont´s know how i can send this field for upload and works
Regards and Thank´s
$a? when youecho– Eli Mar 13 '12 at 15:44str_replace("$f"..? if you are replacing the value then just pass in$fno quotes. – Eli Mar 13 '12 at 15:47