I'm currently trying to upload a csv file to a database through simple html and then php. My problem is I like to know how things work/what's actually happening (I guess that's why I have so many questions)
So anyway my HTML is as follows:
<html>
<form action="mysite.php" method="POST">
<input type="file" name="file"><br />
<input type="submit" value="Now upload it!">
</form>
</html>
My PHP is just:
<?php
echo 'Success';
?>
Before I actually store the file in a database of my liking where is the file actually stored?
Is it created as a temp file on the server? Saved on the server ram? Does it not actually do anything since it's not told to do anything (aka: save to DB)
Thanks

<form [SIC] enctype="multipart/form-data">. After you get that sorted, I'd suggest doing aprint_r($_FILES);in your receiving script to see how the information is posted. – MetalFrog Mar 29 '12 at 19:52print_r( $_FILES );in your mysite.php file, and I think you'll be able to move forward. – hjpotter92 Mar 29 '12 at 19:53