problem with sql querry in php script
Posted on
16th Feb 2014 07:03 pm by
admin
Hello guys,
What I want to do is I want to read out a csv file and then but te conent ot the file in a msql datbase .
So far it works but the problem I haven that if I want to let te script to the typing for me so that I dont have to fill in the Values of the MySQL query myself It doesn't work
This is my code so far :
<?php
$dbhost = 'localhost';
$dbuser = 'y';
$dbpass = 'x';
$dbname = 'test';
$conn = mysql_connect($dbhost, $dbuser, $dbpass) or die;
mysql_select_db($dbname);
$file = fopen("test.csv", "r") or exit("Unable to open file!");
//Output a line of the file until the end is reached
while(!feof($file))
{
echo fgets($file). "<br />";
}
fclose($file);
mysql_query("INSERT INTO test
(Naam,Geboortedatum, Leeftijd,woonplaats, Geslacht) VALUES('$file','$file', '$file','$file','$file' ) ")
or die(mysql_error());
if (!mysql_query($sql,$conn))
{
die('Error: ' . mysql_error());
echo "Gegevens toegevoegd";
}
mysql_close($conn)
?>
No comments posted yet
Your Answer:
Login to answer
276
25
Other forums
I need help on this PHP code
Hi everybody, I made some kind of mistake while editing the code below. As you see, at the 3 row my
How to add functionality to a simple php calender?
Hello everyone,
I have just finished creating a simple php calander. Can someone point
TimeZoneOffset
Hello,
Please i need your help. I have a system that users can use to punch in and out. This
Floating Point Precision Loss
I'm writing a program to draw a three-dimensional cube (with a corner cut off) without using any 3D
While Problem
i am having a problem with a while statement here is the code
Code: [Select]<?php
sess
Class not found error
I am getting Class 'index' not found in Eval function:
//write config
$pat
Code Review - SQL and Insertion Attacks (Warning: Not for Newbs)
Hey guys,
Its been a while, I know. Use to love coming here to answer peoples questions, but
Keeping data in form
How can I keep whatever I write in the form?
tag inside php... hi
Code: <?php echo "<td width="$columnWidth%" align=&strptime() equivalent for php4 ?! Greetings!
this is my first post, thank you in advance for your replies.
Well, the ti
|