|
|
|
ช่วยดูหน่อยคะว่า ต้องการใส่ php,sql ใน xml ต้องเขียนยังไงคะ ขอบคุณมากคะ |
|
|
|
|
|
|
|
ไม่มีใครตอบเลยอ่ะ รอๆ
|
|
|
|
|
Date :
2012-01-19 20:42:14 |
By :
Poster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
รอๆๆ คำตอบ
|
|
|
|
|
Date :
2012-01-21 13:26:25 |
By :
Poster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คือกำลัง จะ สร้าง xml ให้ได้ตามรูปแบบด้านบนใช่ป่ะ
หรือ ดึงข้อมูลจาก xml แล้วเอามาใช้ ?
|
|
|
|
|
Date :
2012-01-21 13:30:08 |
By :
pjgunner.com |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ต้องการเอา php ไปใส่ใน xml ด้านบนคะ
|
|
|
|
|
Date :
2012-01-21 13:32:04 |
By :
Poster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่แน่ใจนะคับ
xml.php
header ("Content-Type:text/xml");
echo <<<ABC
<?xml version="1.0" encoding="UTF-8"?>
<gallery frameColor="0xFFFFFF" frameWidth="15" imagePadding="20" displayTime="6" enableRightClickOpen="true">
ABC;
include('../homemall/config/config.php');
$strSELECT = "SELECT * FROM slidepromotion where RowFlag = 1";
$strRESULT = mysql_query($strSELECT);
$strROW = mysql_num_rows($strRESULT);
while($strDATA = mysql_fetch_array($strRESULT)) {
$PicPath = $strDATA['SlidePic'];
echo" <image>
<url>'$PicPath'/url>
<caption></caption>
<width>700</width>
<height>465</height>
</image>";
}
echo '</gallery>';
แบบนี้ล่ะ มั้ง ลองดูนะคับ
|
|
|
|
|
Date :
2012-01-21 13:39:50 |
By :
pjgunner.com |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่ได้อ่ะคะ
|
|
|
|
|
Date :
2012-01-21 13:43:48 |
By :
Poster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เอา out put ออกมาดูคับ
|
|
|
|
|
Date :
2012-01-21 13:45:58 |
By :
pjgunner.com |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
error บรรทัดที่ 3 คะ
|
|
|
|
|
Date :
2012-01-21 13:46:46 |
By :
Poster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
header ("Content-Type:text/xml");
echo '<?xml version="1.0" encoding="UTF-8"?>'."\n".'<gallery frameColor="0xFFFFFF" frameWidth="15" imagePadding="20" displayTime="6" enableRightClickOpen="true">';
include('../homemall/config/config.php');
$strSELECT = "SELECT * FROM slidepromotion where RowFlag = 1";
$strRESULT = mysql_query($strSELECT);
$strROW = mysql_num_rows($strRESULT);
while($strDATA = mysql_fetch_array($strRESULT)) {
$PicPath = $strDATA['SlidePic'];
echo" <image>
<url>'$PicPath'/url>
<caption></caption>
<width>700</width>
<height>465</height>
</image>";
}
echo '</gallery>';
อีกที
|
|
|
|
|
Date :
2012-01-21 13:51:18 |
By :
pjgunner.com |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่ได้อีกแล้วคะ
Parse error: syntax error, unexpected T_STRING in C:\AppServ\www\homemall\showroom\showroomsql.php on line 2
|
|
|
|
|
Date :
2012-01-21 13:54:25 |
By :
Poster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
header('Content-Type: text/xml');
ผิดบรรทัดไหนอ่ะ ในไฟล์คุณ
|
|
|
|
|
Date :
2012-01-21 13:57:46 |
By :
pjgunner.com |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
โค้ดนี้เปนโค้ดสไลด์ flash แล้วหนูต้องการเอา รูปจากฐานข้อมูลมาใส่แทน <image>
<url>images/2007.jpg</url>
<caption></caption>
<width>700</width>
<height>465</height>
</image> ตรงนี้ โค้ดเดิมมันจะกำหนดรูปไว้อยู่แล้ว แต่นู๋ต้องการดึงจากฐานข้อมูลมาใส่
ไฟล์ xml
<?xml version="1.0" encoding="UTF-8"?>
<gallery frameColor="0xFFFFFF" frameWidth="15" imagePadding="20" displayTime="6" enableRightClickOpen="true">
<image>
<url>images/2007.jpg</url>
<caption></caption>
<width>700</width>
<height>465</height>
</image>
</gallery>
|
|
|
|
|
Date :
2012-01-21 13:58:28 |
By :
Poster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
echo '<?xml version="1.0" encoding="UTF-8"?>'."\n".'<gallery frameColor="0xFFFFFF" frameWidth="15" imagePadding="20" displayTime="6" enableRightClickOpen="true">';
ไฟลนี้คะ
|
|
|
|
|
Date :
2012-01-21 13:59:08 |
By :
Poster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่น่ามี error นะ
Code (PHP)
header('Content-Type: text/xml');
echo '<?xml version="1.0" encoding="UTF-8"?>'."\n".'<gallery frameColor="0xFFFFFF" frameWidth="15" imagePadding="20" displayTime="6" enableRightClickOpen="true">';
include('../homemall/config/config.php');
$strSELECT = "SELECT * FROM slidepromotion where RowFlag = 1";
$strRESULT = mysql_query($strSELECT);
$strROW = mysql_num_rows($strRESULT);
while($strDATA = mysql_fetch_array($strRESULT)) {
$PicPath = $strDATA['SlidePic'];
echo" <image>
<url>'$PicPath'/url>
<caption></caption>
<width>700</width>
<height>465</height>
</image>";
}
echo '</gallery>';
อีกที
และบรรทัดที่ว่ามา ผมลองเครื่องผม ไม่ error
|
|
|
|
|
Date :
2012-01-21 14:03:08 |
By :
pjgunner.com |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ว๊าาา ทำไมของเรา error อ่ะ
|
|
|
|
|
Date :
2012-01-21 14:19:49 |
By :
Poster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|