I am not to familiar with PHP. I wanted to parse an .rss file with php and display the output, that part i have working. However i would like to output the data in a table format, and I am unsure of how to code it for that. Here is the part of my script which will print the data parsed from the .rss file:
function endElement($parser, $name) {
global $insideitem, $tag, $title, $description, $link;
if ($name == \"ITEM\") {
printf(\"<dt><b><a href=\'%s\'>%s</a></b></dt>\",
trim($link),htmlspecialchars(trim($title)));
printf(\"<dd>%s</dd>\",htmlspecialchars(trim($description)));
$title = \"\";
$description = \"\";
$link = \"\";
$insideitem = false;
}
Any help would be great, ty