Jump to content

[SOLVED] fetchrow_array


kev wood

Recommended Posts

i am trying to pull rows from my mysql table and insert these into a an array so i can then out the array results into a formatted XML sheet.  i have been able to pull data from the table and format it into xml with the following code.

 

<?php

//---------------------------------ENTER YOUR DATABASE DETAILS HERE(IF NOT SURE ASK YOUR HOST FOR THE DETAILS-------------//

//mysql details
$link = mysql_connect("localhost", "flashtest", "flash") or die("Could not connect to host.");
mysql_select_db("flashtestdb") or die("Could not connect to host.");



 //get entries from guestbook

    $query = "SELECT (atricle) FROM articles";
	$results = mysql_query($query);

//generate the xml file
	echo "<?xml version = \"1.0\"?>\n";
	echo "<!DOCTYPE chapter PUBLIC dtd>\n";

	echo "<articles>\n";

	while($line=mysql_fetch_assoc($results)) {
		echo "<news>".$line["article"]."</news>\n";
	}


#now lets end the xml file
	echo "</articles>\n";




?>

 

as you can see from this code though it only queries on column from the table.

 

i want to now select the other columns and put them into the formatted xml sheet.  from what i have been looking at i think i need to use the fetchrow_array command in mysql to accomplish this.

 

i have never used this command before though and i keep getting errors.  the code which i have produced so far is as follows but it is not doing as i would like.

 

<?php

//---------------------------------ENTER YOUR DATABASE DETAILS HERE(IF NOT SURE ASK YOUR HOST FOR THE DETAILS-------------//

//mysql details
$link = mysql_connect("localhost", "flashtest", "flash") or die("Could not connect to host.");
mysql_select_db("flashtestdb") or die("Could not connect to host.");



 //get entries from guestbook

    $query = "SELECT (date, title, atricle) FROM articles";
	$results = mysql_query($query);

//generate the xml file
	echo "<?xml version = \"1.0\"?>\n";
	echo "<!DOCTYPE chapter PUBLIC dtd>\n";

	echo "<articles>\n";

	while($line=fetchrow_array($results)) {
		echo "<date>".$line["date"]."</date>\n";
		echo "<title>".$line["title"]."</title>\n";
		echo "<news>".$line["article"]."</news>\n";
	}


#now lets end the xml file
	echo "</articles>\n";




?>

 

any help with this would be great.

Link to comment
Share on other sites

i have sorted the problem out now here is the code i have produced

 

<?php

//---------------------------------ENTER YOUR DATABASE DETAILS HERE(IF NOT SURE ASK YOUR HOST FOR THE DETAILS-------------//

//mysql details
$link  =  mysql_connect(localhost, xxxxx, xxxxxx) or die("Could not connect to host.");
mysql_select_db(xxxxxxxx) or die("Could not find database.");

$query = "SELECT * FROM articles";
$result = mysql_query($query, $link) or die("Data not found.");

$xml_output = "<?xml version=\"1.0\"?>\n";
$xml_output .= "<entries>\n";

for($x = 0 ; $x < mysql_num_rows($result) ; $x++) {
    $row = mysql_fetch_assoc($result);
    
$xml_output .= "\t\t<date>" . $row['date'] . "</date>\n";
    $xml_output .= "\t\t<title>" . $row['title'] . "</title>\n";
    $xml_output .= "\t\t<article>" . $row['article'] . "</article>\n";
   
}

$xml_output .= "</entries>";

echo $xml_output;
?>

 

this code formats all the mysql queries into a formatted xml sheet the flash can read and display.

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.