Results 1 to 3 of 3
-
25th Jul 2012, 01:59 AM #1OPMember
PHP - MySQL query to CSV export
Hi
I need some advise how to achieve this.. there is a link "Click here to generate CSV" when someone clicks that link, it should execute a query and export that sql query result to a CSV file..
any guidance pls?
SamElitePirate Reviewed by ElitePirate on . PHP - MySQL query to CSV export Hi I need some advise how to achieve this.. there is a link "Click here to generate CSV" when someone clicks that link, it should execute a query and export that sql query result to a CSV file.. any guidance pls? Sam Rating: 5
-
25th Jul 2012, 08:23 AM #2
-
25th Jul 2012, 09:19 PM #3MemberWebsite's:
tehMoviez.com 0Senes.com GeekFaceGames.comgoogle says:
PHP Code:mysql_connect($server, $login, $password);
mysql_select_db($db);
$fp = fopen($filename, "w");
$res = mysql_query("SELECT * FROM $table");
// fetch a row and write the column names out to the file
$row = mysql_fetch_assoc($res);
$line = "";
$comma = "";
foreach($row as $name => $value) {
$line .= $comma . '"' . str_replace('"', '""', $name) . '"';
$comma = ",";
}
$line .= "\n";
fputs($fp, $line);
// remove the result pointer back to the start
mysql_data_seek($res, 0);
// and loop through the actual data
while($row = mysql_fetch_assoc($res)) {
$line = "";
$comma = "";
foreach($row as $value) {
$line .= $comma . '"' . str_replace('"', '""', $value) . '"';
$comma = ",";
}
$line .= "\n";
fputs($fp, $line);
}
fclose($fp);
JokerHacker Blog
JokerHacker PHP coding Service // back again!
CurlAxel PHP Download Accelerator
hardly remembering the milk :p
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
mysql query to export database
By lenney in forum IP.BoardReplies: 4Last Post: 7th May 2011, 03:43 PM -
MySql Query
By GoPantheoN in forum Web Development AreaReplies: 5Last Post: 8th Mar 2011, 02:09 PM -
mysql query help ($5 reward)
By tdsii in forum Web Development AreaReplies: 20Last Post: 10th Jan 2011, 11:52 PM -
WordPress database error MySQL server has gone away for query
By blur88 in forum Webmaster DiscussionReplies: 10Last Post: 27th May 2010, 08:43 PM -
Speed Up Your Web Site With MySQL Query Caching
By BlaZe in forum Technical and Security TutorialsReplies: 1Last Post: 4th Nov 2009, 03:11 PM
themaCreator - create posts from...
Version 3.22 released. Open older version (or...