Hallo Gentlemen;
I want to add data from text file to my database. Since the file name is different for each query, I have tried to write the following code. I When I select the file and click on submit button, nothing will happen to my database.
<FORM METHOD=post ACTION="mariam.php" ENCTYPE="multipart/form-data">
<P><INPUT TYPE=file NAME="Browse"></P>
<P><INPUT TYPE=submit name = Maybe VALUE="Validate it!"></P>
<?
if(isset($Maybe)){
$queryrequest = "LOAD DATA INFILE '$Browse' INTO TABLE advariable";
connect_and_excute($queryrequest);
}
What is wrong???