Jump to content

Get Mysql column names?


rune_sm

Recommended Posts

Hey everyone

 

I'm making a php-script that I can use to access any Mysql table i use. That's why I don't know the names of the columns. Sometimes it's a table containing new, sometimes url-links to pictures. The script outputs an xml file to flash, and I usually do something like this:

 

<?php

        // Database iinformation
$db_host="myhost.dk";
$db_user="myuser";
$db_name="mydbname";
$db_password="mypass";

	mysql_pconnect($db_host, $db_user, $db_password);
        mysql_select_db($db_name);

// Select data in database
$result = mysql_query("select * from news");

// Loop through it
while ($row = mysql_fetch_array($result))
{ 
    	      print('<headline>'.$row["headline"].'</headline>');	
    	      print('<date>'.$row["date"].'</date>');	
    	      print('<text>'.$row["headline"].'</text>');	
} 
?>

 

But when I don't know how many columns I have in my table or what their names are, I cannot figure it out.

What I want to do in my loop is something like this:

// Loop through it
while ($row = mysql_fetch_array($result))
{ 
    	      print('<'.$row["column1name"].'>');	
    	      print($row["column1data"]);	
              print('</'.$row["column1name"].'>');	

    	      print('<'.$row["column2name"].'>');	
    	      print($row["column2data"]);	
              print('</'.$row["column2name"].'>');

    	      print('<'.$row["column3name"].'>');	
    	      print($row["column3data"]);	
              print('</'.$row["column3name"].'>');

              .... and so on looping through all my data in the table

} 

 

How can I do this?

 

  - thanks - Rune

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.