|
|
|
ช่วยดู code ให้หน่อยครับ มันไม่แสดงผลออกมา ชื่อไฟล์ readxml.php ครับ |
|
|
|
|
|
|
|
ชื่อไฟล์ readxml.php ครับ
------------------------------------------------------------
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874">
<?
$arr=array();
$count=0;
$block="BOOK";
$key="";
$value="";
function startxml( $parser , $name, $att)
{
global $key;
$key=$name;
print("Found $key<br>");
}
function endxml( $parser, $name )
{
global $count;
global $block;
if ($name==$block)
{
print("Complete 1 Block<br><br>");
$count=$count+1;
}
}
function cdata( $parser, $data )
{
global $key;
global $value;
global $count;
global $arr;
if (strlen($data)>1)
{
$value=$data;
$arr[$count]["$key"]=$value;
print("Keep $key into [$count]<br>");
}
}
$p=xml_parser_create();
xml_set_element_handler( $p , "startxml" , "endxml");
xml_set_character_data_handler($p, "cdata" );
$fp=fopen("book.xml","r");
while($data=fread($fp,4096))
{
xml_parse( $p, $data, feof($fp));
}
?>
<h3>All Book Data<h3>
<?
function show($text)
{
print("<font color=blue>$text</font>");
}
for ($i=0;$i<$count;$i++)
{
echo "Name=",show( $arr[$i]["NAME"] );
echo "<br>";
echo "Cost=",show( $arr[$i]["COST"] );
echo "<br>";
echo "Author=",show( $arr[$i]["AUTHOR"] );
echo "<br><br>";
}
?>
-------------------------------------------------------------------------------------
อันนี้ชื่อ book.xml
-------------------------------------------------------------------------------------
<?xml version="1.0" encoding="windows-874" ?>
<mybook>
<book>
<name>C Programming</name>
<cost>139</cost>
<author>Niruth Amnuaysilp</author>
</book>
<book>
<name>PHP How to #1</name>
<cost>179</cost>
<author>กวาง</author>
</book>
<book>
<name>Data Structure</name>
<cost>225</cost>
<author>Niruth Amnuaysilp</author>
</book>
<book>
<name>PHP How to 3 (AJAX)</name>
<cost>179</cost>
<author>Niruth Amnuaysilp</author>
</book>
</mybook>
-----------------------------------------------
คือว่ามันไม่แสดงผลอะครับผมแก้ตั้งนานยังไงก็ไม่ได้ ท่านเทพช่วยดูหน่อยนะครับ
Tag : - - - -
|
|
|
|
|
|
Date :
8 ต.ค. 2551 16:30:13 |
By :
mksuky |
View :
1305 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|