View Single Post
Old 09-30-2006, 07:53 AM  
Beejeebers
Confirmed User
 
Join Date: Oct 2004
Posts: 290
PHP Code:
<?php
$db 
mysql_connect("localhost""username""password");
mysql_select_db("database_name",$db);
$result mysql_query("SELECT url, title, description FROM your_table_name",$db);
while(
$a=mysql_fetch_array($result)){
    echo 
$a['url'].",".$a['title'].",,,,".$a['description']."<BR>";
}
?>
That should do it...
__________________
Beejeebers is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote