hello for all
I want make uploading center and save the file information at the database
but the db doesnt accept the file info:
this is my code:
$file_name=$_FILES['lie_file']['name'];
$file_type=$_FILES['lie_file']['type'];
$file_tmp=$_FILES['lie_file']['tmp_name'];
$file_size=$_FILES['lie_file']['size'];
mysql_query("INSERT INTO table_name VALUES('','$lie_subject','$lie_text','$file_name','$file_size','$lie_writer')")
its work very good with the $POST method but in $FILES dont work
hope can help