Hi,
Can you help.I need a script that loads a txt file into a mysql table already created.
emails2 is the table
<head>
<title>Adding a text file to an existing table</title>
<body>
<?php
$dbid=mysql_connect("localhost","root","adrian");
mysql_select_db("emails2",$bid);
$query="insert into email2 (category,url, email);
How do i put in a loop to go through 10 records?
Art.