PHP-Code:
<?php
mysql_connect("localhost","","");
mysql_select_db("telefon");
$sql = "TRUNCATE TABLE `t_buch`";
$result = mysql_query ($sql) OR die(mysql_error());
$txt = "http://localhost/phpmyadmin/tb.txt";
$sql = "LOAD DATA INFILE '$txt' REPLACE INTO TABLE `t_buch`"
. ' FIELDS TERMINATED BY \';\''
. ' ENCLOSED BY \'"\'';
$result = mysql_query ($sql) OR die(mysql_error());
?>
Mit einer Internetadresse funktioniert es einfach nicht.
Kann mir jemand helfen ?
EDIT:
[php]-tags by Abraxax
Kommentar