Hi !
I'm a php developer.
I'm developing a site into which I have to upload a text file and a image file
from users through a browse box and then I have to retrieve that file and save it
into mysql database .Should I use POST method to retrieve the browse box
value that have been uploaded with a text file or image file.For example :-
<html>
<body>
<form method="post" action="test.ph p">
<input type="file" name="file_read " id="file_read" >
<?php
$temp_var=$_POS T["file_read"];
?>
</form>
</body>
</html>
I'm a php developer.
I'm developing a site into which I have to upload a text file and a image file
from users through a browse box and then I have to retrieve that file and save it
into mysql database .Should I use POST method to retrieve the browse box
value that have been uploaded with a text file or image file.For example :-
<html>
<body>
<form method="post" action="test.ph p">
<input type="file" name="file_read " id="file_read" >
<?php
$temp_var=$_POS T["file_read"];
?>
</form>
</body>
</html>
Comment