|
|
|
ขอรบกวนท่านผู้รู้ด้วยครับ ตามรูปครับหากเราต้องการเพิ่มช่อง upload รูป เป็น 4 ช่อง ต้องแก้ไขอะไรตรงไหนบ้างครับ |
|
|
|
|
|
|
|
ขอรบกวนท่านผู้รู้ด้วยครับ ตามรูปครับหากเราต้องการเพิ่มช่อง upload รูป เป็น 4 ช่อง ต้องแก้ไขอะไรตรงไหนบ้างครับ
คือว่าอยากเพิ่มช่องอัพโหลด เป็น 4 ช่องครับ รูปปที่ 1 ครับ แล้วส่งค่ามาแสดงผล รูปที่ 2 จาก 1ให้แสดง 4 ภาพครับ เราต้องแก้ไขฐานข้อมูลหรือเพิ่มเติมตรงไหนบ้างครับ ตรง imgname ต้องเพิ่มยังไงบ้างครับ ผมงงและมึนตึ๊บครับ ไม่ค่อยสันทัดเรื่อง PHP ด้วยครับ โฟลเดอร์ที่เก็บภาพ ชื่อ item ครับ ขอรบกวนด้วยครับ ขอบคุณครับ
Code addform.php
Code (PHP)
<?
session_start();
session_save_path("./session/");
$maxboarduser=$_SESSION['maxboarduser'];
$maxboardname=$_SESSION['maxboardname'];
$maxboardpwd=$_SESSION['maxboardpwd'];
$type = $_GET['type'];
if($type==""){ print "<meta http-equiv=refresh content=0;URL=addmainform.php>"; exit;}else{
#ติดต่อ ฐานข้อมูลเพื่อเช็คว่ามีหมวดหมู่ที่จะประกาศไหม
include("config.in.php");
$check_type = mysql_connect($host,$username,$password) or die ("ไม่สามารถติดต่อ database เพื่อเช็คว่ามีหมวดหมู่ที่จะประกาศได้ 1");
$check_sql = "select * from type where type = '$type' ";
mysql_query('SET NAMES tis620');
$check_re = mysql_db_query( $dbname,$check_sql) or die ("ไม่สามารถสั่งให้ database เพื่อเช็คว่ามีหมวดหมู่ที่จะประกาศได้ 2");
$ch_type_row = mysql_num_rows($check_re);
if($ch_type_row == 0) {
echo $no_type_2add ; #ถ้าไม่มีหมวดหมู่นั้น
exit; };
};
function randomToken($len) {
srand( date("s") );
$chars = "";
$chars.= "0123456789"; // กำหนดอักขษะที่จะนำมา random แก้ได้นะ
$ret_str = "";
$num = strlen($chars);
for($i=0; $i < $len; $i++) {
$ret_str.= $chars[rand()%$num]; // ใช้ฟังชั่น rand() เข้ามาช่วยในการทำงาน
}
return $ret_str;
}
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<script language="Javascript1.2"><!-- // load htmlarea
_editor_url = ""; // URL to htmlarea files
var win_ie_ver = parseFloat(navigator.appVersion.split("MSIE")[1]);
if (navigator.userAgent.indexOf('Mac') >= 0) { win_ie_ver = 0; }
if (navigator.userAgent.indexOf('Windows CE') >= 0) { win_ie_ver = 0; }
if (navigator.userAgent.indexOf('Opera') >= 0) { win_ie_ver = 0; }
if (win_ie_ver >= 5.5) {
document.write('<scr' + 'ipt src="' +_editor_url+ 'editor.js"');
document.write(' language="Javascript1.2"></scr' + 'ipt>');
} else { document.write('<scr'+'ipt>function editor_generate() { return false; }</scr'+'ipt>'); }
// --></script>
<? include"title.php"; ?>
<link href="style.css" rel="stylesheet" type="text/css">
<SCRIPT LANGUAGE="JavaScript">
function check(){
if(document.forms.maxForm.types.selectedIndex == 0) //index of "------" is 0
{
alert("กรุณาเลือกประเภทหลัก");
return false;
}
if(document.forms.maxForm.littletype.selectedIndex == 0) //index of "------" is 0
{
alert("กรุณาเลือกประเภทย่อย");
return false;
}
if(document.forms.maxForm.status.selectedIndex == 0) //index of "------" is 0
{
alert("กรุณาเลือกความต้องการ");
return false;
}
if(document.forms.maxForm.name.value == "")
{
alert("กรุณากรอกชื่อ"); //alert with appropriate message
document.forms.maxForm.name.select(); //place cursor on the input box
return false;
}
if(document.forms.maxForm.city.selectedIndex == 0) //index of "------" is 0
{
alert("กรุณาเลือกจังหวัด");
return false;
}
if(document.forms.maxForm.contact.value == "")
{
alert("กรุณากรอกสถานที่ติดต่อ"); //alert with appropriate message
document.forms.maxForm.contact.select(); //place cursor on the input box
return false;
}
if(document.forms.maxForm.topic.value == "")
{
alert("กรุณากรอกหัวข้อประกาศ"); //alert with appropriate message
document.forms.maxForm.topic.select(); //place cursor on the input box
return false;
}
if(document.forms.maxForm.detail.value == "")
{
alert("กรุณากรอกรายละเอียดประกาศ"); //alert with appropriate message
document.forms.maxForm.detail.select(); //place cursor on the input box
return false;
}
if(document.forms.maxForm.price.value == "")
{
alert("กรุณากรอกราคา");
document.forms.maxForm.price.select();
return false;
}
if(isNaN(document.forms.maxForm.price.value) == true) //isNaN() returns false if value not a number
{
alert("ราคาต้องเป็นตัวเลขเท่านั้น");
document.forms.maxForm.price.select();
return false;
}
}
</SCRIPT>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874"></head>
<body>
<div><img src="images/spacer.gif" width="1" height="7" border="0" alt=""></div>
<table width="970" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
<tr>
<td valign="top" width="194"> </td>
<td><img src="images/spacer.gif" width="4" height="1" border="0" alt=""></td>
<td valign="top"><table width="100%" border="0" cellpadding="0" cellspacing="0" id="table1" style="background: url(images/left_bg.gif)">
<tr>
<td><div class="lw">ลงประกาศรายการใหม่</div></td>
</tr>
</table>
<table border="0" width="100%" cellspacing="0" cellpadding="0" id="table2">
<tr>
<td>
<div align="center">
<table width="95%" cellspacing=2 cellpadding=2 border=0 align="center">
<form action="addnew.php" method=post enctype="multipart/form-data" name="maxForm" onSubmit="return check();">
<tr>
<td width="137" align=right ><b><font color="#FF0000">*</font>
ประเภท :</b></td>
<td colspan="3"> <b>
<FONT COLOR="#FF0000"><? print $type ;?></FONT>
</b> [ <a href="addmainform.php">เปลี่ยนหมวดหมู่</a> ]
<input type="hidden" name="types" value="<? print $type ?>">
</td>
</tr>
<tr>
<td align=right width="137"><b><font color="#FF0000">*</font>
ประเภทย่อย :</b></td>
<td width="226">
<?
#ทำตัวเลือกหมวดหมู่ย่อย
include "config.in.php";
echo "<select name='littletype'>\n";
echo "<option value='' selected>เลือกประเภทย่อย</option>\n";
$db = mysql_connect($host,$username,$password) or die ("ไม่สามารถติดต่อ database เพื่อเช็คประเภทย่อยได้ในขณะนี้");
$sql = "select * from type where type = '$type' ";
$result = mysql_db_query($dbname,$sql) or die ("ไม่สามารถสั่งให้ database ทำงานเช็คประเภทย่อยได้ในขณะนี้");
$NRow = mysql_num_rows($result);
#แสดงผลตัวเลือกหมวดหมู่ย่อย
$query = "select * from type where type = '$type' ";
$result = mysql_query($query);
print("");
while( $arr = mysql_fetch_row( $result ) )
{
print ("<option value='$arr[2]'>$arr[2]</option>\n");
};
echo "</select>\n";
?>
</td>
<td width="105" >
<div align="right"> <b><font color="#FF0000">*</font> คุณต้องการ :</b></div>
</td>
<td width="238">
<select name="status" >
<option selected>เลือกความต้องการ</option>
<option value="ประกาศ">ประกาศ</option>
<option value="ขาย">ขาย</option>
<option value="ซื้อ">ซื้อ</option>
<option value="ถาม">ถาม</option>
<option value="แจกฟรี">แจกฟรี</option>
<option value="ว่าจ้าง">ว่าจ้าง</option>
<option value="รับจ้าง">รับจ้าง</option>
<option value="ให้เช่า">ให้เช่า</option>
<option value="อื่นๆ">อื่นๆ</option>
</select>
</td>
</tr>
<tr>
<td align=right width="137"><b><font color="#FF0000">*</font> ชื่อผู้ประกาศ
:</b></td>
<td width="226">
<input name=name type=text value="<? print $maxboardname ;?>" size=20 maxlength="100">
</td>
<td width="105">
<div align="right"></div>
</td>
<td width="238"> </td>
</tr>
<tr>
<td align=right width="137"><b>Username</b><font color="#0066CC">(เฉพาะสมาชิก)</font>
:</td>
<td width="226">
<input type=text name=user size=20 maxlength="50" value="<? print $maxboarduser ;?>">
</td>
<td width="105">
<div align="right"><b>Password :</b></div>
</td>
<td width="238">
<input type=password name=pwd size=20 maxlength="50" value="<? print $maxboardpwd ;?>" >
</td>
</tr>
<tr>
<td align=right width="137"><b> <font color="#FF0000">*</font>
จังหวัด :</b></td>
<td width="226">
<select name=city >
<option value="" selected>เลือกจังหวัด</option>
<option value="กระบี่">กระบี่ </option>
<option value="กรุงเทพมหานคร">กรุงเทพมหานคร</option>
<option value="กาญจนบุรี">กาญจนบุรี </option>
<option value="กาฬสินธุ์">กาฬสินธุ์ </option>
<option value="กำแพงเพชร">กำแพงเพชร </option>
<option value="ขอนแก่น">ขอนแก่น</option>
<option value="จันทบุรี">จันทบุรี</option>
<option value="ฉะเชิงเทรา">ฉะเชิงเทรา </option>
<option value="ชัยนาท">ชัยนาท </option>
<option value="ชัยภูมิ">ชัยภูมิ </option>
<option value="ชุมพร">ชุมพร </option>
<option value="ชลบุรี">ชลบุรี </option>
<option value="เชียงใหม่">เชียงใหม่ </option>
<option value="เชียงราย">เชียงราย </option>
<option value="ตรัง">ตรัง </option>
<option value="ตราด">ตราด </option>
<option value="ตาก">ตาก </option>
<option value="นครนายก">นครนายก </option>
<option value="นครปฐม">นครปฐม </option>
<option value="นครพนม">นครพนม </option>
<option value="นครราชสีมา">นครราชสีมา </option>
<option value="นครศรีธรรมราช">นครศรีธรรมราช </option>
<option value="นครสวรรค์">นครสวรรค์ </option>
<option value="นราธิวาส">นราธิวาส </option>
<option value="น่าน">น่าน </option>
<option value="นนทบุรี">นนทบุรี </option>
<option value="บุรีรัมย์">บุรีรัมย์</option>
<option value="ประจวบคีรีขันธ์">ประจวบคีรีขันธ์ </option>
<option value="ปทุมธานี">ปทุมธานี </option>
<option value="ปราจีนบุรี">ปราจีนบุรี </option>
<option value="ปัตตานี">ปัตตานี </option>
<option value="พะเยา">พะเยา </option>
<option value="พระนครศรีอยุธยา">พระนครศรีอยุธยา </option>
<option value="พังงา">พังงา </option>
<option value="พิจิตร">พิจิตร </option>
<option value="พิษณุโลก">พิษณุโลก </option>
<option value="เพชรบุรี">เพชรบุรี </option>
<option value="เพชรบูรณ์">เพชรบูรณ์ </option>
<option value="แพร่">แพร่ </option>
<option value="พัทลุง">พัทลุง </option>
<option value="ภูเก็ต">ภูเก็ต </option>
<option value="มหาสารคาม">มหาสารคาม </option>
<option value="มุกดาหาร">มุกดาหาร </option>
<option value="แม่ฮ่องสอน">แม่ฮ่องสอน </option>
<option value="ยโสธร">ยโสธร </option>
<option value="ยะลา">ยะลา </option>
<option value="ร้อยเอ็ด">ร้อยเอ็ด </option>
<option value="ระนอง">ระนอง </option>
<option value="ระยอง">ระยอง </option>
<option value="ราชบุรี">ราชบุรี</option>
<option value="ลพบุรี">ลพบุรี </option>
<option value="ลำปาง">ลำปาง </option>
<option value="ลำพูน">ลำพูน </option>
<option value="เลย">เลย </option>
<option value="ศรีสะเกษ">ศรีสะเกษ</option>
<option value="สกลนคร">สกลนคร</option>
<option value="สงขลา">สงขลา </option>
<option value="สมุทรสาคร">สมุทรสาคร </option>
<option value="สมุทรปราการ">สมุทรปราการ </option>
<option value="สมุทรสงคราม">สมุทรสงคราม </option>
<option value="สระแก้ว">สระแก้ว </option>
<option value="สระบุรี">สระบุรี </option>
<option value="สิงห์บุรี">สิงห์บุรี </option>
<option value="สุโขทัย">สุโขทัย </option>
<option value="สุพรรณบุรี">สุพรรณบุรี </option>
<option value="สุราษฎร์ธานี">สุราษฎร์ธานี </option>
<option value="สุรินทร์">สุรินทร์ </option>
<option value="สตูล">สตูล </option>
<option value="หนองคาย">หนองคาย </option>
<option value="หนองบัวลำภู">หนองบัวลำภู </option>
<option value="อำนาจเจริญ">อำนาจเจริญ </option>
<option value="อุดรธานี">อุดรธานี </option>
<option value="อุตรดิตถ์">อุตรดิตถ์ </option>
<option value="อุทัยธานี">อุทัยธานี </option>
<option value="อุบลราชธานี">อุบลราชธานี</option>
<option value="อ่างทอง">อ่างทอง </option>
<option value="อื่นๆ">อื่นๆ</option>
</select>
</td>
<td width="105">
<div align="right"><b>โทรศัพท์ :</b></div>
</td>
<td width="238">
<input type=text name=tel size=20 maxlength="50" >
</td>
</tr>
<tr>
<td align=right width="137"><b>มือถือ :</b></td>
<td width="226">
<input type="text" name="mobile" size="20" maxlength="50" >
</td>
<td width="105">
<div align="right"><b>Fax :</b></div>
</td>
<td width="238">
<input type=text name=fax size=20 maxlength="50" >
</td>
</tr>
<tr>
<td align=right width="137"> <b><font color="#FF0000">*</font> ที่ติดต่อได้สะดวก
:</b></td>
<td colspan="3">
<input type=text name=contact size=40 >
</td>
</tr>
<tr>
<td align=right width="137"><b> <font color="#FF0000">*</font>
หัวข้อประกาศ :</b></td>
<td colspan="3">
<input type=text name=topic size=70 align=middle >
</td>
</tr>
<tr>
<td valign="top"> <div align="right"><b><font color="#FF0000">*</font> รายละเอียด
:<br>
</b>
<br>
</div></td>
<td colspan="3" valign="top"><textarea name=detail rows=15 cols=70></textarea>
<script language="javascript1.2">
var config = new Object(); // create new config object
config.width = "500px";
config.height = "250px";
config.bodyStyle = 'background-color: white; font-family: "Verdana"; font-size: x-small;';
config.debug = 0;
// NOTE: You can remove any of these blocks and use the default config!
config.toolbar = [
['fontname'],
['fontsize'],
['fontstyle'],
['linebreak'],
['bold','italic','underline','separator'],
// ['strikethrough','subscript','superscript','separator'],
['justifyleft','justifycenter','justifyright','separator'],
['OrderedList','UnOrderedList','Outdent','Indent','separator'],
['forecolor','backcolor','separator'],
['HorizontalRule','Createlink','InsertImage','htmlmode','separator'],
['about','help','popupeditor'],
];
config.fontnames = {
"Arial": "arial, helvetica, sans-serif",
"Courier New": "courier new, courier, mono",
"Georgia": "Georgia, Times New Roman, Times, Serif",
"Tahoma": "Tahoma, Arial, Helvetica, sans-serif",
"Times New Roman": "times new roman, times, serif",
"Verdana": "Verdana, Arial, Helvetica, sans-serif",
"impact": "impact",
"WingDings": "WingDings"
};
config.fontsizes = {
"1 (8 pt)": "1",
"2 (10 pt)": "2",
"3 (12 pt)": "3",
"4 (14 pt)": "4",
"5 (18 pt)": "5",
"6 (24 pt)": "6",
"7 (36 pt)": "7"
};
//config.stylesheet = "http://www.domain.com/sample.css";
config.fontstyles = [ // make sure classNames are defined in the page the content is being display as well in or they won't work!
{ name: "headline", className: "headline", classStyle: "font-family: arial black, arial; font-size: 28px; letter-spacing: -2px;" },
{ name: "arial red", className: "headline2", classStyle: "font-family: arial black, arial; font-size: 12px; letter-spacing: -2px; color:red" },
{ name: "verdana blue", className: "headline4", classStyle: "font-family: verdana; font-size: 18px; letter-spacing: -2px; color:blue" }
// leave classStyle blank if it's defined in config.stylesheet (above), like this:
// { name: "verdana blue", className: "headline4", classStyle: "" }
];
editor_generate('detail',config);
</script></td>
</tr>
<tr>
<td align=right width="137"><b>เวบไซต์ที่เกี่ยวข้อง :</b></td>
<td colspan="3">
<input name=links type=text value="http://" size=40 align=middle >
</td>
</tr>
<tr>
<td align=right width="137"><b> รูปภาพ :</b></td>
<td colspan="3"><input type="file" name="img" size=30 > ( ไม่เกิน 100 kB )</td>
</tr>
<tr>
<td align=right width="137"><b> สภาพ :</b></td>
<td width="226">
<input type=radio name=statusproduct value="ของใหม่" checked >
ของใหม่
<input type=radio name=statusproduct value="ของมือสอง">
ของมือสอง</td>
<td width="105" >
<div align="right"> <font color="#FF0000"><b>*</b></font><b> ราคา
:</b></div>
</td>
<td width="238" >
<input type=text name=price size=8 maxlength="10" value=0>
<font color="#000000"> บาท</font> (ตัวเลข)</td>
</tr>
<tr>
<td align=right width="137" valign="top"><b> วิธีส่งของ :</b></td>
<td colspan="3">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="23%" >
<input type="radio" name="send" value="ทางพัสดุไปรษณีย์" checked>
ทางพัสดุไปรษณีย์ <br>
<input type="radio" name="send" value="นัดดูสินค้า">
นัดดูสินค้า</td>
<td width="77%" >
<input type="radio" name="send" value="แล้วแต่ตกลง">
แล้วแต่ตกลง <br>
<input type="radio" name="send" value="วิธีอื่น">
วิธีอื่น</td>
</tr>
</table>
</td>
</tr>
<tr>
<td align=right width="137"><b> แจ้งให้ทราบที่ Email :</b></td>
<td colspan="3">
<input type="hidden" name="ecall" value="no">
<input type=text name=email size=20 maxlength="30" >
เมื่อมีผู้มาตอบประกาศ (ไม่ต้องการไม่ต้องกรอก)</td>
</tr>
<tr>
<td align=right width="137"><b><font color="#FF0000">*</font> Security code :</b></td>
<td colspan="3"><div align="left">
<table border="0" width="100%" cellspacing="1">
<tr>
<td width="50" align=center bgcolor="#E8E8E8"><b><font color=#6600CC>
<?
$code = randomToken(5); // เรียกฟังชั่นขึ้นมาใช้งาน โดยกำหนดค่า พารามิเตอร์ลงไป ว่าจะใช้กี่ตัวอักษร ในตัวอย่างใช้ 5 ตัวอักษรครับ
echo "<input type='hidden' name='code' value='$code' size='7' >";
echo $code;
?></font></b>
</td>
<td bgcolor="#E8E8E8"><input type="text" name="textcode" size="7" > กรอกรหัสที่เห็น 5 ตัวอักษร</td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td align=right valign="top"><strong>คำค้นหา :</strong></td>
<td colspan="3"><table width="100%" cellpadding="0">
<tr>
<td><input name="key1" type="text" id="key1"></td>
<td><input name="key2" type="text" id="key2"></td>
<td><input name="key3" type="text" id="key3"></td>
</tr>
<tr>
<td><input name="key4" type="text" id="key4"></td>
<td><input name="key5" type="text" id="key5"></td>
<td><input name="key6" type="text" id="key6"></td>
</tr>
</table></td>
</tr>
<tr>
<td width="137" > </td>
<td align=center colspan="3"><br>
<input type=submit value="Submit" name="submit"> <input type=reset value="Reset" name="reset">
<br>
<br>
</td>
</tr>
</form>
</table>
</div>
</td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
</table>
</td>
</tr>
<tr>
<td valign="top">
</td>
<td> </td>
<td valign="top">
</td>
</tr>
<tr>
<td valign="top">
</td>
<td> </td>
<td valign="top">
</td>
</tr>
<tr>
<td valign="top">
</td>
<td> </td>
<td valign="top">
</td>
</tr>
<tr>
<td valign="top">
</td>
<td> </td>
<td valign="top">
</td>
</tr>
</table>
</body>
</html>
code mbdetial.php
Code (PHP)
<?
session_start();
session_save_path("./session/");
$maxboarduser=$_SESSION['maxboarduser'];
$maxboardpwd=$_SESSION['maxboardpwd'];
Header('Content-Type: text/html; charset=TIS-620');
$id = $_GET['id'];
#ติดต่อฐานข้อมูลเพื่อตรวจสอบประกาศ
include("config.in.php");
$show_db = mysql_connect($host,$username,$password) or die ("ไม่สามารถติดต่อ database เพื่อแสดงประกาศได้");
$show_sql = "select * from topic where id='$id'";
mysql_query('SET NAMES tis620');
$show_re = mysql_db_query( $dbname,$show_sql) or die ("ไม่สามารถสั่งให้ database เพื่อแสดงประกาศได้");
$arr = mysql_fetch_row( $show_re );
$NRow = mysql_num_rows($show_re);
#ให้เพิ่มค่า การชม id นั้นๆ ว่ามีผู้เข้าชมแล้วกี่ครั้ง
mysql_query("update topic set numvisit=numvisit+1 where id='$id' ");
#ถ้า id ที่ให้แสดงไม่มีอยู่ให้แสดงผล
for ($i = 0; $i <= $arr[1]; $i++) {
if ($id != $arr[1] ) {
print "<br><br><center>Error : ไม่มีข้อมูลที่ท่านต้องการให้แสดง</center>";
exit();
};
};
#ถ้าไม่ใส่ id ให้แสดงผล
if ( $id == "" ) {
print "<br><br><center>Error : ไม่มีข้อมูล ID ไม่สามารถแสดงผลได้</center>";
exit();
};
########## ตรวจสอบข้อมูลและทำการทำรูปแบบการแสดงผล ###########
#ให้รายละเอียดทำการเว้นบรรทัด
$arr[6] = nl2br( $arr[6] );
#เช็คว่า User ที่ Login ตรงกับของประกาศให่ใส่ Icon ลบกระทู้
if ( $maxboarduser == ""){ }else{
if ( $arr[13] == $maxboarduser ){
$memedittopic = "<a href=edittopic.php?id=$id><span class=search>แก้ไขประกาศนี้</span></a>";
$memdeltopic = "<a href=deltopic.php?id=$id><span class=search>ลบประกาศนี้</span></a>";};
};
#เช็คว่ามี Email หรือไม่
if ( $arr[15] == ""){
$mailtopic = "ไม่ระบุ";
}else{ $mailtopic = "<a href=mailto:$arr[15]>$arr[15]</a>"; };
#เช็คว่ามีเบอร์โทรหรือไม่
if ( $arr[23] == ""){
$teltopic = "ไม่ระบุ";
}else{ $teltopic = "$arr[23]"; };
#เช็คว่ามีเบอร์แฟกซ์หรือไม่
if ( $arr[24] == ""){
$faxtopic = "ไม่ระบุ";
}else{ $faxtopic = "$arr[24]"; };
#เช็คว่ามีเบอร์มือถือหรือไม่
if ( $arr[25] == ""){
$mobiletopic = "ไม่ระบุ";
}else{ $mobiletopic = "$arr[25]"; };
#เช็คว่ามีเว็บลิงค์หรือไม่
if ( $arr[8] == ""){
$webtopic = "ไม่ระบุ";
}else{ $webtopic = "<a href=$arr[8] target=_blank>$arr[8]</a>"; };
#เช็คว่าเป็นประกาศจากสมาชิกหรือไม่
if ( $arr[13] == ""){
$membertopic = "บุคคลทั่วไป";
}else{ $membertopic = "สมาชิกเว็บไซต์ <img src=images/member.gif border=0 align=absmiddle>"; };
#เช็คว่ามีรูปไหมและกำหนดขนาดรูปที่จะแสดงเพื่อความสวยงาม
if ($arr[11]=="")
{
if ($arr[12]!="")
{
$picupload = "<center><br><a href='$arr[12]' target='_blank'><img src='$arr[12]' width='350'></a><br><br></center>";
}
else
{
$picupload = "";
}
}else{
$size = getimagesize ("item/$arr[11]");
#$size[0] คือความกว้าง $size[1] คือความสูง $size[3] คือแสดงทั้งหมด
if ( $size[0] > "$pic_width" ) {
$picupload = "<center><br><a href='item/$arr[11]' target='_blank'><img src='item/$arr[11]' width='$pic_width' border='0'><br>คลิกเพื่อดูรูปใหญ่</a><br><br></center>";
}else{
$picupload = "<center><br><img src='item/$arr[11]' ><br><br></center>";
};
};
########## จบการตรวจสอบข้อมูลและทำการทำรูปแบบการแสดงผล ###########
?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><? include"title.php"; ?> <link href="style.css" rel="stylesheet" type="text/css"><SCRIPT LANGUAGE="JavaScript">
<!--
function checkcomment(){
if(document.forms.addcomment.c_name.value == "")
{
alert("กรุณากรอกชื่อของท่าน"); //alert with appropriate message
document.forms.addcomment.c_name.select(); //place cursor on the input box
return false;
}
if(document.forms.addcomment.c_detail.value == "")
{
alert("กรุณากรอกความคิดเห็นของท่าน");
document.forms.addcomment.c_detail.select();
return false;
}
if(document.forms.addcomment.email.value == "")
{}else{
if(addcomment.email.value.indexOf('@')==-1)
{
alert("กรุณากรอกอีเมล์ผู้แสดงความเห็นให้ถูกต้อง");
return false;
}
if(addcomment.email.value.indexOf('.')==-1)
{
alert("กรุณากรอกอีเมล์ผู้แสดงความเห็นให้ถูกต้อง");
return false;
}
}
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
//-->
</SCRIPT>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874"></head><body>
<div><img src="images/spacer.gif" width="1" height="7" border="0" alt=""></div><table width="970" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
<tr>
<td colspan="2" valign="top">
</td>
<td width="173" valign="top">
</td>
</tr>
<tr>
<td colspan="2" valign="top">
<table width="728" border="0" align="center" cellpadding="0" cellspacing="0" id="table1" style="background: url(images/left_bg.gif)">
<tr><td width="10"> </td>
<td height="30" class="mw">รายละเอียดสินค้า</td>
</tr></table>
<table width="728" border="0" align="center" cellpadding="2">
<tr>
<td width="900"><div align="center">
<table width="100%" border="0" cellspacing="0" cellpadding="3" align="center">
<tr>
<td colspan="5" height="30"><div align="left"><b><font size="3"><? print $arr[2] ;?> </font></b></div></td>
</tr>
<tr>
<td colspan="5" height="30"><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="100%"><b><u><font color="#0066CC" size="3"> </font></u></b> </td>
</tr>
</table></td>
</tr>
<tr>
<td width="6%" rowspan="2" valign="top"><div align="right"><font color="#000099"><b> </b></font></div></td>
<td colspan="4" valign="top"><? print $picupload ;?> <?= $arr[6] ;?></td>
</tr>
<tr>
<td colspan="4" valign="top"> </td>
</tr>
<tr>
<td width="6%" valign="top" bgcolor="#F2F2FF"> </td>
<td colspan="4" valign="top" bgcolor="#F2F2FF"> </td>
</tr>
<tr>
<td colspan="2" bgcolor="#F2F2FF"><div align="right"><font color="#000099"><b>เว็บไซต์เพิ่มเติม : </b></font></div></td>
<td colspan="3" bgcolor="#F2F2FF"><? print $webtopic ;?></td>
</tr>
<tr>
<td colspan="2" bgcolor="#F2F2FF"><div align="right"><font color="#000099"><b>ต้องการ : </b></font></div></td>
<td width="29%" bgcolor="#F2F2FF"><? print $arr[5] ;?></td>
<td width="18%" bgcolor="#F2F2FF"><div align="right"><font color="#000099"><b>ราคา : </b></font></div></td>
<td width="34%" bgcolor="#F2F2FF"><font color="red"><b><? print $arr[7] ;?></b></font> บาท</td>
</tr>
<tr>
<td colspan="2" bgcolor="#F2F2FF"><div align="right"><font color="#000099"><b>วิธีส่งสินค้า : </b></font></div></td>
<td width="29%" bgcolor="#F2F2FF"><? print $arr[21] ;?></td>
<td width="18%" bgcolor="#F2F2FF"><div align="right"><font color="#000099"><b>สภาพสินค้า : </b></font></div></td>
<td width="34%" bgcolor="#F2F2FF"><? print $arr[20] ;?></td>
</tr>
<tr>
<td colspan="2" bgcolor="#F2F2FF"> </td>
<td width="29%" bgcolor="#F2F2FF"> </td>
<td width="18%" bgcolor="#F2F2FF"> </td>
<td width="34%" bgcolor="#F2F2FF"> </td>
</tr>
<tr>
<td height="30" colspan="5" bgcolor="#FFFF99"><div align="center"><b><font color="#0066CC" size="3"><u>รายละเอียดผู้ประกาศ</u></font></b></div></td>
</tr>
<tr>
<td colspan="2"><div align="right"><font color="#000099"><b>ชื่อผู้ประกาศ : </b></font></div></td>
<td width="29%"><? print $arr[14] ;?> ( <? print $arr[18] ;?> )</td>
<td width="18%"><div align="right"><font color="#000099"><b>สถานะ : </b></font></div></td>
<td width="34%"><? print $membertopic ;?></td>
</tr>
<tr>
<td colspan="2"><div align="right"><font color="#000099"><b>ที่อยู่ติดต่อ : </b></font></div></td>
<td colspan="3"><? print $arr[19] ;?></td>
</tr>
<tr>
<td colspan="2"><div align="right"><font color="#000099"><b>เบอร์โทรศัพท์ : </b></font></div></td>
<td width="29%"><? print $teltopic ;?></td>
<td width="18%"><div align="right"><font color="#000099"><b>เบอร์แฟกซ์ : </b></font></div></td>
<td width="34%"><? print $faxtopic ;?></td>
</tr>
<tr>
<td colspan="2"><div align="right"><font color="#000099"><b>เบอร์มือถือ : </b></font></div></td>
<td width="29%"><? print $mobiletopic ;?></td>
<td width="18%"><div align="right"><font color="#000099"><b>อีเมล์ : </b></font></div></td>
<td width="34%"><? print $mailtopic ;?></td>
</tr>
<tr>
<td colspan="2"><div align="right"><font color="#000099"><b>จังหวัด : </b></font></div></td>
<td width="29%"><? print $arr[22] ;?></td>
<td width="18%"> </td>
<td width="34%"> </td>
</tr>
<tr>
<td colspan="2"> </td>
<td width="29%"> </td>
<td width="18%"> </td>
<td width="34%"> </td>
</tr>
<tr>
<td colspan="2"><div align="right"><b><font color="#0099CC">จำนวนคนเข้าชม : </font></b></div></td>
<td width="29%"><font color="#0099CC"><? print $arr[10] ;?> </font></td>
<td><div align="right"><b><font color="#000099">ลงประกาศเมื่อ : </font></b></div></td>
<td>วันที่ <? print $arr[16] ;?> เวลา <? print $arr[17] ;?> น.</td>
</tr>
<tr>
<td colspan="2"> </td>
<td colspan="3"><div align="left"> </div></td>
</tr>
</table>
<br>
<br>
</div></td>
</tr>
<tr>
<td width="720"> </td>
</tr>
</table></td>
<td width="173" valign="top">
<div align="right">
<table border="0" width="100%" cellspacing="0">
<tr>
<td>
<div align="center">
<table width="130" height="20" border="0" cellpadding="3" cellspacing="1" style="background: url(images/left_bg.gif)">
<tr>
<td class="mw" height="25" align="center">ผู้สนับสนุน</td>
</tr>
<tr>
<td bgcolor="#FFFFFF" align="center">
<? include'banner-right.php'; ?>
</td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td align="center"><table width="130" border="0" cellpadding="0" cellspacing="0" style="background: url(images/left_bg.gif)">
<tr><td width="10"> </td>
<td height="30" class="mw">Bot</td>
</tr></table>
<table width="130" border="0">
<tr>
<td><style type="text/css">
<!--
.style22222 {font-size: 9px}
-->
</style><span class="style22222">
<?php include ("bot_th.php");?>
</span>
</td>
</tr>
</table></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
</table>
</div>
</td>
</tr>
<tr><td width="713" valign="top"> </td><td width="84"> </td><td valign="top"> </td></tr></table>
</body></html>
ขอบคุณครับ
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2011-04-01 13:40:04 |
By :
loem |
View :
1211 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากครับ ผมจะลองพยายามทำดูครับ
|
|
|
|
|
Date :
2011-04-23 10:38:51 |
By :
loem |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|