Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,038

HOME > PHP > PHP Forum > ขอความช่วยเหลือเรื่อง การเพิ่ม child และ sub-child eliment ลงใน file xml ค่ะ



 

ขอความช่วยเหลือเรื่อง การเพิ่ม child และ sub-child eliment ลงใน file xml ค่ะ

 



Topic : 038175



โพสกระทู้ ( 9 )
บทความ ( 0 )



สถานะออฟไลน์




เขียนโค้ดแล้วเวลาเพิ่ม tag มันติดส่วน header เข้ามาด้วย

ทำยังไงถึงจะให้มันเพิ่มแต่ child และ sub-child eliment อ่ะคะ

CODE
Code (PHP)
<?php
function writeXML($xml)
{
	$fp = fopen('test.xml', 'a');
	fwrite($fp,$xml);
	fclose($fp);
}

if(isset($submit))
{
	$link = $_POST['link'];
	$time = $_POST['time'];
	// Set the content type to be XML, so that the browser will   recognise it as XML.
	header( "content-type: application/xml; charset=utf-8" );

	// "Create" the document.
	$xml = new DOMDocument( "1.0", "utf-8" );

	// Create root elements.
	$xml_commandList = $xml->createElement( "commandList" );

	// Create child elements.
	$xml_command = $xml->createElement( "command" );

	// Create another element, just to show you can add any (realistic to computer) number of sublevels.
	$xml_link = $xml->createElement( "link",$link );
	$xml_time = $xml->createElement( "time", $time );
	//$xml_note = $xml->createElement( "Description", $desc );

	// Append the whole bunch.
	$xml_command->appendChild( $xml_link );
	$xml_command->appendChild( $xml_time );
	$xml_commandList->appendChild( $xml_command );
	//$xml_album->appendChild( $xml_track );

	// Append the DOMXML.
	$xml->appendChild( $xml_commandList );

	// Parse the XML.
	$text = $xml->saveXML();
	print $text;

	writeXML($text);
}
else
{
?>
<form method="post" name="formxml" action="<?=$SERVER_['PHP_SELF'] ?>">
<table border="1" cellspacing="0">
<tr><td colspan="2"><center> ADD URL</center></td></tr>
<tr><td>URL : </td><td><input type="text" name="link"></td></tr>
<tr><td>TIME : </td><td><input type="text" name="time"></td></tr>
<tr><td colspan="2"><center><input type="submit" name="submit" value="  Add  "></center></td></tr>
</table>
</form>
<?
}
?>



Output
<?xml version="1.0" encoding="utf-8"?>
<commandList><command><link>http://www.thairath.co.th/rss/edu.xml</link><time>7</time></command></commandList>
<?xml version="1.0" encoding="utf-8"?>
<commandList><command><link>http://www.thaidigg.net/rss/category/12</link><time>3</time></command></commandList>
<?xml version="1.0" encoding="utf-8"?>
<commandList><command><link>http://www.thaidigg.net/rss/category/27</link><time>10</time></command></commandList>
<?xml version="1.0" encoding="utf-8"?>
<commandList><command><link>http://www.slamscholarship.com/feed</link><time>18</time></command></commandList>

แต่ต้องการ Output ประมาณนี้อ่ะคะ

<?xml version="1.0" encoding="utf-8"?>
<commandList>

<command><link>http://www.thairath.co.th/rss/edu.xml</link><time>7</time></command>

<command><link>http://www.thaidigg.net/rss/category/12</link><time>3</time></command>

<command><link>http://www.thaidigg.net/rss/category/27</link><time>10</time></command>

<command><link>http://www.slamscholarship.com/feed</link><time>18</time></command>

</commandList>

ขอความช่วยเหลือด้วยค่ะ

ขอบคุณคะ



Tag : - - - -







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2010-02-02 12:37:56 By : ่justcute View : 1148 Reply : 6
 

 

No. 1



โพสกระทู้ ( 3,468 )
บทความ ( 0 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์
Twitter

เป็นไปได้ไง






Date : 2010-02-02 12:49:15 By : pjgunner
 


 

No. 2



โพสกระทู้ ( 3,468 )
บทความ ( 0 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์
Twitter

ไม่เห็นมี loop เลย
Date : 2010-02-02 12:56:01 By : pjgunner
 

 

No. 3



โพสกระทู้ ( 9 )
บทความ ( 0 )



สถานะออฟไลน์


คือ output ที่ได้ มาจากการ add ทั้งหมด 4 ครั้งอ่ะค่ะ โดยใช้ perminssion a (append)

แต่ปัญหาคือมันติด tag <?xml version="1.0" encoding="utf-8"?> กับ <commandList> มาด้วยทุกครั้งที่add

ทำยังไงถึงจะแก้ปัญหานี้ได้อ่ะคะ
Date : 2010-02-02 13:04:42 By : ่justcute
 


 

No. 4



โพสกระทู้ ( 3,468 )
บทความ ( 0 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์
Twitter

แนะนำให้โหลดมาเพิ่มข้อมูล แล้วค่อยบันทึกทับ
Date : 2010-02-02 13:30:42 By : pjgunner
 


 

No. 5



โพสกระทู้ ( 1,439 )
บทความ ( 0 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์
Facebook

ก่อนอื่นเตรียมสร้างโค้ด test.xml แบบนี้ก่อนน่ะครับ เพราะขี้เกียจใส่เงื่อนไข
test.xml (xml)
<?xml version="1.0" encoding="utf-8"?>
<commandList>
</commandList>


Code (PHP)
<?php
function writeXML($xml)
{
	$fp = fopen('test.xml', 'w');
	fwrite($fp,$xml);
	fclose($fp);
}

if(isset($_POST[submit]))
{
	$link = $_POST['link'];
	$time = $_POST['time'];

$xml = new DOMDocument( "1.0", "utf-8" );

	$xml_command = $xml->createElement( "command" );
	$xml_link = $xml->createElement( "link",$link );
	$xml_time = $xml->createElement( "time", $time );

	$xml_command->appendChild( $xml_link );
	$xml_command->appendChild( $xml_time );

	$xml->appendChild( $xml_command );


	$text = $xml->saveXML();

$node = $xml->getElementsByTagName("command")->item(0);


$newdoc = new DOMDocument;
$newdoc->formatOutput = true;
$newdoc->load("test.xml");
$node = $newdoc->importNode($node, true);
$newdoc->documentElement->appendChild($node);
$text=$newdoc->saveXML();
writeXML($text);
}
else
{
?>
<form method="post" name="formxml" action="<?=$SERVER_['PHP_SELF'] ?>">
<table border="1" cellspacing="0">
<tr><td colspan="2"><center> ADD URL</center></td></tr>
<tr><td>URL : </td><td><input type="text" name="link"></td></tr>
<tr><td>TIME : </td><td><input type="text" name="time"></td></tr>
<tr><td colspan="2"><center><input type="submit" name="submit" value="  Add  "></center></td></tr>
</table>
</form>
<?
}
?>



Date : 2010-02-02 15:26:38 By : xbeginner01
 


 

No. 6



โพสกระทู้ ( 9 )
บทความ ( 0 )



สถานะออฟไลน์


ขอบคุณมากๆๆนะค่ะ
Date : 2010-02-02 15:49:15 By : ่justcute
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : ขอความช่วยเหลือเรื่อง การเพิ่ม child และ sub-child eliment ลงใน file xml ค่ะ
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 03
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2025 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่