Ravens PHP Scripts: Forums
 

 

View next topic
View previous topic
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> Blocks
Author Message
GanjaUK
Life Cycles Becoming CPU Cycles



Joined: Feb 14, 2004
Posts: 633
Location: England

PostPosted: Sun Apr 18, 2004 7:57 am Reply with quote

This is the 1st block I have tried to make, so not sure where it is going wrong. The problem is, when I activate the block, the data for the block comes out fine, but it is above the block, and the actual block itself opens after the data with the message, there is no content for this block right now.

Code:


<?php

if (eregi("block-DaRkSiDeGUK.php",$_SERVER['PHP_SELF'])) {
    Header("Location: index.php");
    die();
}

$parser = xml_parser_create();

xml_parser_set_option($parser,XML_OPTION_SKIP_WHITE,1);

xml_parser_set_option($parser,XML_OPTION_CASE_FOLDING,0);

$data = implode("",file("http://vietnam.bftracks.net/appl/bft/Player/xmlview/39242"));

xml_parse_into_struct($parser,$data,&$d_ar,&$i_ar) or print_error();

echo "Name:";
echo $d_ar[1]['value'];
echo "<br>";
echo "Last Seen Online:";
echo $d_ar[2]['value'];
echo "<br>";
echo "World Ranking Position:";
echo $d_ar[3]['value'];

xml_parser_free($parser);

?>
[/code]

_________________
Image
Need a quality custom theme designed? PM me!
 
View user's profile Send private message Visit poster's website
Raven
Site Admin/Owner



Joined: Aug 27, 2002
Posts: 17088

PostPosted: Sun Apr 18, 2004 9:09 am Reply with quote

All blocks have to have their output placed in a variable called $content. So, instead of echoing, you need to build the $content variable with the value of your echo statements. Something like this
Code:
$content  = "Name:"; 

$content .= $d_ar[1]['value'];
$content .= "<br>";
$content .= "Last Seen Online:";
$content .= $d_ar[2]['value'];
$content .= "<br>";
$content .= "World Ranking Position:";
$content .= $d_ar[3]['value'];
 
View user's profile Send private message
GanjaUK







PostPosted: Sun Apr 18, 2004 9:20 am Reply with quote

Superb! Many thanks Raven. This worked a treat. Cool
 
Lithium
Hangin' Around



Joined: Mar 30, 2004
Posts: 28

PostPosted: Fri May 21, 2004 8:14 am Reply with quote

Woot, this helped me too....thanks Raven.
 
View user's profile Send private message Visit poster's website
Display posts from previous:       
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> Blocks

View next topic
View previous topic
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum


Powered by phpBB © 2001-2007 phpBB Group
All times are GMT - 6 Hours
 
Forums ©