PDA

View Full Version : Adding Images to XML and displaying with PHP



wispas
April 20th, 2008, 02:34 PM
After hours I finally managed to get this Simple XML working now. I now want to enchance and was wondering if anyone knows how to add image links to the XML and display it with PHP.

XML File


<?xml version="1.0" encoding="utf-8"?>
<library>
<shelf id="fiction">
<book>
<title>Of Mice and Men</title>
<author>John Steinbeck</author>
<desc>Whats this</desc>
</book>
<book>
<title>Harry Potter and the Philosopher's Stone</title>
<author>J.K. Rowling</author>
<desc>Whats that</desc>
</book>
</shelf>
</library>

PHP File


<?php
$library = simplexml_load_file('library.xml');
foreach ($library->shelf as $shelf) {
printf("Shelf %s\n", $shelf['id']);
foreach ($shelf->book as $book) {
printf("Title: %s\n", $book->title);
printf("Author: %s\n", $book->author);
printf("Description: %s\n", $book->desc);
}
}
?>

I want to add a image field to the XML for each of the books and display it with PHP.

ajcates
April 20th, 2008, 03:22 PM
Html:


<?php
$library = simplexml_load_file('library.xml');
?>
<html>
<head>
<title>Example</title>
<style>
div {
background-color:#eee;
padding:10px;
margin-top:20px;
width:400px;
}
</style>
</head>
<body>
<?php foreach ($library->shelf as $shelf): ?>
<h2>Shelf: <?php echo $shelf['id']?></h2>
<?php foreach ($shelf->book as $book):?>
<div>
<p>Title: <?php echo $book->title?></p>
<p>Author: <?php echo $book->author?></p>
<p>Description: <?php echo $book->desc;?></p>
<p><img src="<?php echo $book->image ?>" alt="<?php echo $book->title ?>" /></p>
</div>
<?php endforeach; ?>
<?php endforeach; ?>
</body>
</html>
Xml:


<?xml version="1.0" encoding="utf-8"?>
<library>
<shelf id="fiction">
<book>
<title>Of Mice and Men</title>
<author>John Steinbeck</author>
<desc>Whats this</desc>
<image>http://www.oralpath.com/BOOKS/SteinbeckMiceAndMen.jpg</image>
</book>
<book>
<title>Harry Potter and the Philosopher's Stone</title>
<author>J.K. Rowling</author>
<desc>Whats that</desc>
<image>http://dustyloft.files.wordpress.com/2007/05/harry_potter_and_the_philosophers_stone.jpg</image>
</book>
</shelf>
</library>


Since I helped you, will you help me out by beta testing my site?
http://www.kirupa.com/forum/showthread.php?t=295580

wispas
April 20th, 2008, 04:05 PM
thank you so much for the help. thank you! :pleased:


Since I helped you, will you help me out by beta testing my site?
http://www.kirupa.com/forum/showthread.php?t=295580
absolutely!