Advertisement

03.25.2008 at 08:59PM PDT, ID: 23269423
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

8.2

mysql table field names do not show in export

Asked by syedasimmeesaq in PHP Scripting Language, PHP and Databases

I have this code below and the it exports all the table data just fine but doesn't put the column name in it. can someone help me to get the field names of mysql table.

ThanksStart Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
<?php
  //EDIT YOUR MySQL Connection Info: 
   $DB_Server = "localhost";        //your MySQL Server  
   $DB_Username = "root";                 //your MySQL User Name  
   $DB_Password = "password";                //your MySQL Password  
   $DB_DBName = "db";                //your MySQL Database Name  
   $DB_TBLName = "table";                //your MySQL Table Name  
   //$DB_TBLName,  $DB_DBName, may also be commented out & passed to the browser 
   //as parameters in a query string, so that this code may be easily reused for 
   //any MySQL table or any MySQL database on your server 
   //DEFINE SQL QUERY: 
   //you can use just about ANY kind of select statement you want -  
   //edit this to suit your needs! 
   $sql = "Select * from $DB_TBLName"; 
   //Optional: print out title to top of Excel or Word file with Timestamp 
   //for when file was generated: 
   //set $Use_Titel = 1 to generate title, 0 not to use title 
   $Use_Title = 0; 
   //define date for title: EDIT this to create the time-format you need 
   $now_date = date('m-d-Y H:i'); 
   //define title for .doc or .xls file: EDIT this if you want 
   $title = "Dump For Table $DB_TBLName from Database $DB_DBName on $now_date"; 
   /* 
   Leave the connection info below as it is: 
   just edit the above. 
   (Editing of code past this point recommended only for advanced users.) 
   */ 
   //create MySQL connection 
   $Connect = @mysql_connect($DB_Server, $DB_Username, $DB_Password) 
       or die("Couldn't connect to MySQL:<br>" . mysql_error() . "<br>" . mysql_errno()); 
   //select database 
   $Db = @mysql_select_db($DB_DBName, $Connect) 
       or die("Couldn't select database:<br>" . mysql_error(). "<br>" . mysql_errno()); 
   //execute query 
   $result = @mysql_query($sql,$Connect) 
       or die("Couldn't execute query:<br>" . mysql_error(). "<br>" . mysql_errno()); 
   //if this parameter is included ($w=1), file returned will be in word format ('.doc') 
   //if parameter is not included, file returned will be in excel format ('.xls') 
   if (isset($w) && ($w==1)) 
   { 
       $file_type = "msword"; 
       $file_ending = "doc"; 
   }else { 
       $file_type = "vnd.ms-excel"; 
       $file_ending = "xls"; 
   } 
   //header info for browser: determines file type ('.doc' or '.xls') 
   header("Content-Type: application/$file_type"); 
   header("Content-Disposition: attachment; filename=database_dump.$file_ending"); 
   header("Pragma: no-cache"); 
   header("Expires: 0"); 
   /*    Start of Formatting for Word or Excel    */ 
   if (isset($w) && ($w==1)) //check for $w again 
   { 
       /*    FORMATTING FOR WORD DOCUMENTS ('.doc')   */ 
       //create title with timestamp: 
       if ($Use_Title == 1) 
       { 
           echo("$titlenn"); 
       } 
       //define separator (defines columns in excel & tabs in word) 
       $sep = "n"; //new line character 
       while($row = mysql_fetch_row($result)) 
       { 
           //set_time_limit(60); // HaRa 
           $schema_insert = ""; 
           for($j=0; $j<mysql_num_fields($result);$j++) 
           { 
           //define field names 
           $field_name = mysql_field_name($result,$j); 
           //will show name of fields 
           $schema_insert .= "$field_name:t"; 
               if(!isset($row[$j])) { 
                   $schema_insert .= "NULL".$sep; 
                   } 
               elseif ($row[$j] != "") { 
                   $schema_insert .= "$row[$j]".$sep; 
                   } 
               else { 
                   $schema_insert .= "".$sep; 
                   } 
           } 
           $schema_insert = str_replace($sep."$", "", $schema_insert); 
           $schema_insert .= "t"; 
           print(trim($schema_insert)); 
           //end of each mysql row 
           //creates line to separate data from each MySQL table row 
           print "n----------------------------------------------------n"; 
       } 
   }else{ 
       /*    FORMATTING FOR EXCEL DOCUMENTS ('.xls')   */ 
       //create title with timestamp: 
       if ($Use_Title == 1) 
       { 
           echo("$titlen"); 
       } 
       //define separator (defines columns in excel & tabs in word) 
       $sep = "t"; //tabbed character 
       //start of printing column names as names of MySQL fields 
       for ($i = 0; $i < mysql_num_fields($result); $i++) 
       { 
           echo mysql_field_name($result,$i) . "t"; 
       } 
       print("n"); 
       //end of printing column names 
       //start while loop to get data 
       while($row = mysql_fetch_row($result)) 
       { 
           //set_time_limit(60); // HaRa 
           $schema_insert = ""; 
           for($j=0; $j<mysql_num_fields($result);$j++) 
           { 
               if(!isset($row[$j])) 
                   $schema_insert .= "NULL".$sep; 
               elseif ($row[$j] != "") 
                   $schema_insert .= "$row[$j]".$sep; 
               else 
                   $schema_insert .= "".$sep; 
           } 
           $schema_insert = str_replace($sep."$", "", $schema_insert); 
           //following fix suggested by Josue (thanks, Josue!) 
           //this corrects output in excel when table fields contain n or r 
           //these two characters are now replaced with a space 
           $schema_insert = preg_replace("/rn|nr|n|r/", " ", $schema_insert); 
           $schema_insert .= "t"; 
           print(trim($schema_insert)); 
           print "n"; 
       } 
   } 
   ?>
 
 
[+][-]03.26.2008 at 12:27AM PDT, ID: 21209433

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: PHP Scripting Language, PHP and Databases
Sign Up Now!
Solution Provided By: julianH
Participating Experts: 2
Solution Grade: A
 
 
[+][-]03.26.2008 at 12:52AM PDT, ID: 21209540

Assisted solutions are selected by the member who asked the question as a comment that contributed to their question's solution.

Start your 30-day free trial to view this Assisted Solution or ask the Experts your question.

 
 
Loading Advertisement...
20081112-EE-VQP-44 / EE_QW_2_20070628