Search found 3 matches
- Mon Jun 07, 2010 9:50 pm
- Forum: PHP - Code
- Topic: Uploading file architecture
- Replies: 3
- Views: 418
Re: Uploading file architecture
opps, yah missing 1 more question, so in my php.ini, the temp dir i set in the temp_dir is jus a temp storage which I can just igore and use the windows default right. ultimately, its the final location which I need to specify in my php script to determine where the file will reside (eg in the server)
- Mon Jun 07, 2010 9:48 pm
- Forum: PHP - Code
- Topic: Uploading file architecture
- Replies: 3
- Views: 418
Re: Uploading file architecture
Once you use 'move_uploaded_file' it is no longer in the tmp_name. However, it is in the upload/name. So you can manipulate the tmp_name before move_uploaded_file or name afterward. thanks phdatabase. so based on your point, move_uploaded_file($_FILES["value1"]["value2"],"v...
- Mon Jun 07, 2010 9:00 pm
- Forum: PHP - Code
- Topic: Uploading file architecture
- Replies: 3
- Views: 418
Uploading file architecture
Hi, I'm new here. Basically, I am now designing some web forms for my company using PHP and MS SQL. I am now at this point whereby I need to create a upload form.. Not sure if this topic is rightfully to be here or to be in theory and design forum.. nevertheless, please assist if any of you knows :)...