View Single Post
Old 02-01-2010, 10:11 PM   #2 (permalink)
maeltar
The Acquainted
 
Join Date: Nov 2009
Location: nr Stratford-Upon-Avon
Posts: 137
Thanks: 3
maeltar is on a distinguished road
Default

what is $query ?? nothing is defined

you could use something like

Code:
$myFile = "test.txt";
$fh = fopen($myFile, 'w') or die("can't open file"); 

$query = "select * into outfile '$myFile' from  <tablename>";
$result = mysql_query($query);

fclose($fh);
__________________
Thanks... Simon

Sex, Drugs & Linux Rules
Send a message via MSN to maeltar
maeltar is offline  
Reply With Quote