|
|
|
xml ดึงข้อมูลจาก sql มาแสดงผล ไม่ทราบต้องเขียนโคีตยังไงค่ะ ขอบคุณค่ะ |
|
|
|
|
|
|
|
ดูตัวอย่างนี้ครับ
Code (PHP)
<?php
header("Content-type:text/xml; charset=UTF-8");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
echo '<?xml version="1.0" encoding="utf-8"?>';
$objConnect = mysql_connect("localhost","root","root");
$objDB = mysql_select_db("mydatabase");
$strSQL = "SELECT * FROM images WHERE 1 ";
$objQuery = mysql_query($strSQL);
?>
<images>
<?
while($obResult = mysql_fetch_array($objQuery))
{
?>
<item>
<ImageID><?=$obResult["ImageID"];?></ImageID>
<ItemID><?=$obResult["ItemID"];?></ItemID>
<ImagePath><?=$obResult["ImagePath"];?></ImagePath>
<Link><?=$obResult["Link"];?></Link>
</item>
<?
}
?>
</images>
<?
mysql_close($objConnect);
?>
Go to : สอบถามเรื่อง PHP สำหรับสร้างไฟล์ XML ค่ะ (PHP, MySQL)
|
|
|
|
|
Date :
2012-11-13 09:34:13 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
รบกวนอีกครั้งน่ะค่ะพี่วิน
แล้วหนูจะต้องเอาไปใช้แทนไฟล์เก่ามันอ่ะค่ะไม่ทราบว่าจะ
สร้างหรือเปลี่ยนชื่อตรงไหนดีค่ะ
ไฟล์เก่า ชื่อว่า
piecemakerXML.xml
ขอบคุณค่ะ
นี้โค๊ตที่ปรับแก้ค่ะ
Code (PHP)
<?php
header("Content-type:text/xml; charset=UTF-8");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
echo '<?xml version="1.0" encoding="utf-8"?>';
$objConnect = mysql_connect("localhost","root","root");
$objDB = mysql_select_db("my_sql");
$strSQL = "SELECT * FROM slide ";
$objQuery = mysql_query($strSQL);
?>
<Piecemaker>
<Settings>
<imageWidth>700</imageWidth>
<imageHeight>350</imageHeight>
<segments>7</segments>
<tweenTime>1.2</tweenTime>
<tweenDelay>0.1</tweenDelay>
<tweenType>easeInOutBack</tweenType>
<zDistance>0</zDistance>
<expand>20</expand>
<innerColor>0x111111</innerColor>
<textBackground>0x0064C8</textBackground>
<shadowDarkness>100</shadowDarkness>
<textDistance>25</textDistance>
<autoplay>12</autoplay>
</Settings>
<?
while($obResult = mysql_fetch_array($objQuery))
{
?>
<Image Filename="<?=$obResult["name_slide"];?>"></Image>
<?
}
?>
</Piecemaker>
<?
mysql_close($objConnect);
?>
|
|
|
|
|
Date :
2012-11-13 10:27:19 |
By :
อ้อย |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้วค่ะ ขอบคุณค่ะ
|
|
|
|
|
Date :
2012-11-13 11:32:22 |
By :
อ้อย |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|