View Single Post
Old 2005-09-03, 09:11 AM   #3
rich06
Internet! Is that thing still around?
 
Join Date: Oct 2004
Location: French Riviera
Posts: 7
Send a message via ICQ to rich06
Here's around er... $2.15 worth of PHP code that should get you started...

PHP Code:
<?
$sites 
file('/path/to/my/text/file.txt');

if (
is_array($sites)) {
    foreach (
$sites as $site) {
        
$bits explode('|',$site);
        
$sql 'insert into mytable (title,url,description,other_shit) ';
        if (
is_array($bits)) {
              
mysql_query($sql."('{$bits[0]}','{$bits[1]}','{$bits[2]}','{$bits[3]}')") or die('whatever');
         }
      }
}
?>
hth
rich
__________________
ICQ# 6820996
rich06 is offline   Reply With Quote