Jump to content

Using PHP as an XML file


brooksh

Recommended Posts

I am having a problem when using a php file as xml. php code will not work inside the { }

Has anyone ever had this problem?

 

<?php
header("Content-type: text/xml");
echo '<?xml version="1.0" encoding="UTF-8"?>';
?>

<slideshow>
<preferences backgroundColor="ffffff" showLoadingIcon="false" />

<?php
$image1 = "2_3z6zfodn.jpg";
### DB TO XML ##################

// Connect to database
include("config/config.inc.php");
include("config/function.inc.php");

$connection = db_connect();
mysql_select_db("database");
$listing_id = $_GET['listing_id'];

$sql = "SELECT file_name FROM images WHERE listingid='".$listing_id."'";
$res = mysql_query($sql, $connection);
$num = mysql_num_rows($res);
echo '<album title="Title" description="Description">';
for ($x=0;($x < $num);$x=$x+1)
{
$array = mysql_fetch_array($res);
echo '<img src="images/'.$array['file_name'].'"/>';  //this does not work
echo '<img src="images/'.$image1.'"/>';  //this does not work
echo '<img src="images/2_3z6zfodn.jpg"/>';  //this does not work
}
echo '<img src="images/2_3z6zfodn.jpg"/>';  //this works
echo '<img src="images/'.$image1.'"/>';  //this works
echo '</album>';

################################
?>

</slideshow>

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.