michaelk46 Posted January 5, 2010 Share Posted January 5, 2010 I am not sure if this is a PHP or MySQL issue so I apologize if it's in the wrong forum. I am trying to merge the data from a csv file to a MySQL Database after the file is uploaded to the server. It uploads and moves the file to the correct directory, but it just won't merge the data... Here's the code case 'csv': $destfile='C:\wamp\www\Test\Upload\Files\csv\\' . basename($_FILES['upload']['name']); $ret = move_uploaded_file($_FILES['upload']['tmp_name'], $destfile); switch ($ret) { case false: echo htmlspecialchars('Unable to move file', ENT_QUOTES, 'utf-8'); break; default: $sql="LOAD DATA LOCAL INFILE '" . ($_FILES['upload']['name']) . "' INTO TABLE page FIELDS TERMINATED BY ',' LINES TERMINATED BY '\r\n' IGNORE 1 LINES (id, caption)"; echo ($sql); mysqli_query ($link, $sql); include 'upload.html.php'; echo htmlspecialchars('File uploaded successfully', ENT_QUOTES, 'utf-8'); break; } break; Any help is greatly appreciated... Quote Link to comment https://forums.phpfreaks.com/topic/187322-merging-data-into-a-mysql-database/ Share on other sites More sharing options...
michaelk46 Posted January 5, 2010 Author Share Posted January 5, 2010 Sorry, I posted to thread....I wasn't sure how to delete this reply... Quote Link to comment https://forums.phpfreaks.com/topic/187322-merging-data-into-a-mysql-database/#findComment-989192 Share on other sites More sharing options...
monkeypaw201 Posted January 5, 2010 Share Posted January 5, 2010 Correct me if I'm wrong, but I believe in the SQL statement you should/need to specify the full path to the file. Quote Link to comment https://forums.phpfreaks.com/topic/187322-merging-data-into-a-mysql-database/#findComment-989226 Share on other sites More sharing options...
michaelk46 Posted January 6, 2010 Author Share Posted January 6, 2010 You are correct... I did a test while trying to figure this out and posted the wrong code... Here's the right code case 'csv': $destfile='C:\wamp\www\Test\Upload\Files\csv\\' . basename($_FILES['upload']['name']); $ret = move_uploaded_file($_FILES['upload']['tmp_name'], $destfile); switch ($ret) { case false: echo htmlspecialchars('Unable to move file', ENT_QUOTES, 'utf-8'); break; default: $sql="LOAD DATA LOCAL INFILE '" . $destfile . "' INTO TABLE page FIELDS TERMINATED BY ',' LINES TERMINATED BY '\r\n' IGNORE 1 LINES (id, caption)"; echo ($sql); mysqli_query ($link, $sql); include 'upload.html.php'; echo htmlspecialchars('File uploaded successfully', ENT_QUOTES, 'utf-8'); break; } break; Quote Link to comment https://forums.phpfreaks.com/topic/187322-merging-data-into-a-mysql-database/#findComment-989270 Share on other sites More sharing options...
michaelk46 Posted January 6, 2010 Author Share Posted January 6, 2010 One thing I was thinking of was... The code for the form is posted below. <form enctype="multipart/form-data" action="index.php" method="post"> <div> <label for="upload">File to Be Uploaded:</label> <input name="upload" type="file" size="45"/> </div> <p></p> <div> <input type="submit" name="file_upload" value="Upload File"/> </div> </form> I originally had this script just merging the data with the database and it worked... which is why this is so frustrating. At that time, the input type was 'text'. I then modified it to move the file to a folder depending on the type of file it was. TO do that I changed the input type to 'file' along with a couple other changes. I am thinking that's the reason why this is not working currently. Is there a way to assign both text and file to the input type? Quote Link to comment https://forums.phpfreaks.com/topic/187322-merging-data-into-a-mysql-database/#findComment-989289 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.