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,037

HOME > PHP > PHP Forum > ผมหาส่วนที่โชว์รูปออกมาไม่เจออ่าคับ งงมากเลยคับ วอนผู้รู้ช่วยทีคับ ช่วยยแก้ละใส่ ในไฟล์ของ หน้า index.php ให้ทีคับ



 

ผมหาส่วนที่โชว์รูปออกมาไม่เจออ่าคับ งงมากเลยคับ วอนผู้รู้ช่วยทีคับ ช่วยยแก้ละใส่ ในไฟล์ของ หน้า index.php ให้ทีคับ

 



Topic : 051315



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



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




ผมหาส่วนที่โชว์รูปออกมาไม่เจออ่าคับ งงมากเลยคับ วอนผู้รู้ช่วยทีคับ

ผมอยากให้รูปภาพมันมาโชวในหน้า ดูตัวอย่างลิงค์คับ http://www.mangmooradio.com/new/index.php ให้มันอยู่ตรงตารางด้านซ้ายไม่รู้ทำไงอ่าคับ ซึ่งผมอยากได้รูปในข่าวที่อยู่ในหน้าโค๊ดnewsมันอยู่ด้านซ้าย ตรงช่องว่างอ่าคับ
นี่คือโค๊ดน้า newคับ
<?php
require("./NewsSql.inc.php");
$db = new NewsSQL($DBName);
if ((!empty($PR)) && ($Rating>=1)){
$db->set_Rating($newsid,$Rating);
}
$result = $db->getnewsbyid($newsid);
$title = $result[0]["title"];
$content = $result[0]["content"];
$picture = $result[0]["picture"];
$picturepath = "./photo/";
$viewnum = $result[0]["viewnum"];
$sourceurl = $result[0]["sourceurl"];
$source = $result[0]["source"];
$adddate = $result[0]["adddate"];
$db->addhit($viewnum,$newsid);
$Rate = $result[0]["rating"];
$Rate1 = $Rate*10;
$Rate2 = ceil($Rate1);
$Rate = $Rate2/10;

$pre[0] = $newsid-1;

for ($i=1; $i<=$prenumber-1; $i++){
$pre[$i] = $pre[$i-1]-1;
}

$next[0] = $newsid+1;

for ($i=1; $i<=$nextnumber-1; $i++){
$next[$i] = $next[$i-1]+1;
}

?>
<html>
<head>
<title><?php print "$title"; ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=<?php print "$front_charset"; ?>">
<link rel="stylesheet" href="./style/style.css" type="text/css">
<script language="JavaScript">
<!--
function MM_reloadPage(init) { //reloads the window if Nav4 resized
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
// -->
</script>
</head>

<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0">
<table width="770" border="0" cellspacing="1" cellpadding="0" align="center" class="table_01">
<tr>
<td class="table_02" width="160" valign="top">
<table width="160" border="0" cellspacing="0" cellpadding="3">
<tr>
<td colspan="3" bgcolor="#F2F2F2" class="menu_in">:::</td>
</tr>
<tr>
<td width="36">
<div align="right">:</div>
</td>
<td width="73">
<?php
$width = $Rate*10;
if (!empty($salt)){
print "<img src=\"./images/redline.gif\" width=\"$width\" height=\"8\" alt=\"$salt\">";
}
else{
print "<img src=\"./images/redline.gif\" width=\"$width\" height=\"8\">";
}
?>
</td>
<td width="33">&nbsp;</td>
</tr>
</table>

<hr noshade size="1" color=#999999>
<form action="<?php print "$PHP_SELF"; ?>" method="post">
<input type="hidden" name="newsid" value="<?php print "$newsid"; ?>">
</form>

<hr noshade size="1" color=#999999>
<table width="160" border="0" cellspacing="0" cellpadding="4">
<tr>
<td>&nbsp;</td>
</tr>
<tr>
<td>
<form action="search.php" method="POST">
<table border="0" cellspacing="0" cellpadding="0" width="145" align="right">
<tr>
<td>&nbsp;</td>
</tr>
<tr><td><input type="submit" name="searchsubmit" value="<?php print "$front_searchsubmit"; ?>"></td></tr>
<tr><td>&nbsp;</td></tr>
</table>
</form>
</td>
</tr>
</table>
</td>

<td class="menu" bgcolor="#FFFFFF" valign="top" width="410">
<table width="410" border="0" cellspacing="0" cellpadding="4">
<tr>
<td bgcolor="#F2F2F2" class="menu_in">::<? print "$title"; ?></td>
</tr>
<?php
if (!empty($picture)){

print "<tr>
<td align=\"center\"><img src=\"$picturepath$picture\" alt=\"$title\"></td>
</tr>";

}

if (!empty($content)){
$content = nl2br($content);
print "<tr>
<td>$content</td>
</tr>";
}

if (!empty($sourceurl)){
print "<tr>
<td bgcolor=\"#F2F2F2\" class=\"menu_in\">$front_source :</td>
</tr>
<tr>
<td><a href=\"$sourceurl\" class=\"en_b\" target=\"_blank\">$source</a></td>
</tr>";
}
else {
if (!empty($source)){
print "<tr>
<td bgcolor=\"#F2F2F2\" class=\"menu_in\">$front_source :</td>
</tr>
<tr>
<td>$source</td>
</tr>";
}
}

if (!empty($adddate)){
print "<tr>
<td bgcolor=\"#F2F2F2\" class=\"menu_in\">$front_adddate :</td>
</tr>
<tr>
<td>$adddate</td>
</tr>";
}

for ($i=0; $i<=$prenumber-1; $i++){
$prename[$i] = $db->getname($pre[$i]);
if (!empty($prename[$i])){
$prenotemptytag = true;
}
}
for ($i=0; $i<=$nextnumber-1; $i++){
$nextname[$i] = $db->getname($next[$i]);
if (!empty($nextname[$i])){
$nextnotemptytag = true;
}
}
if (($prenotemptytag)||($nextnotemptytag)){
print "<tr>
<td bgcolor=\"#F2F2F2\" class=\"menu_in\">$front_more ...</td>
</tr>
<tr>
<td>";
for ($i=0; $i<=$prenumber-1; $i++){
if (!empty($prename[$i])){
print "<a href=\"news.php?newsid=$pre[$i]\" class=\"en_b\">$prename[$i]</a><br>";
}
}

for ($i=0; $i<=$nextnumber-1; $i++){
if (!empty($nextname[$i])){
print "<a href=\"news.php?newsid=$next[$i]\" class=\"en_b\">$nextname[$i]</a><br>";
}
}
print "</td>
</tr>";
}

?>
</table>
</td>
<td class="table_02" background="./images/right_bg.gif" valign="top">
<table width="200" border="0" cellspacing="0" cellpadding="6">
<tr>
<td>&nbsp;

</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>

นี่คือโค๊ดของ index.php
<?pssshp
require("NewsSql.inc.php");
$db = new NewsSQL($DBName);
$homecataresult = $db->getchildcatalog(0);
$homelatestresult = $db->getlatestonhome($front_latestonhomerecord);
$picture = $result[0]["picture"];
$picturepath = "./photo/";
?>
<html>
<head>
<title><?php print "$front_indextitle"; ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=<?php print "$front_charset"; ?>">
<link rel="stylesheet" href="new/style/style.css" type="text/css">
<script language="JavaScript">
<!--
function MM_reloadPage(init) { //reloads the window if Nav4 resized
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
// -->
</script>
</head>

<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0">
<table width="770" border="0" cellspacing="1" cellpadding="0" align="center" class="table_01">
<tr>
<td class="table_02" width="160" valign="top">
<?php
$width = $Rate*10;
if (!empty($salt)){
print "<img src=\"./images/redline.gif\" width=\"$width\" height=\"8\" alt=\"$salt\">";
}
else{
print "<img src=\"./images/redline.gif\" width=\"$width\" height=\"8\">";
}
?>
<a href="new/news.php?newsid=<?php print "$picture"; ?>" class="en_b"><img src="new/images/bullet_b.gif" width="11" height="9" border="0"><?php print "$picture"; ?></a><br>
<?php


if (!empty($picture)){

print "<tr>
<td align=\"center\"><img src=\"$picturepath$picture\" alt=\"$title\"></td>
</tr>";

}

?>
?></td>
<td class="menu" bgcolor="#FFFFFF" valign="top" width="410">
<table width="410" border="0" cellspacing="0" cellpadding="4">
<tr>
<td bgcolor="#F2F2F2" class="menu_in"><?php print "$front_latestnews"; ?></td>
</tr>
<tr>
<td>
<?php
if (!empty($homelatestresult)) {
while ( list($key,$val)=each($homelatestresult) ) {
$title = stripslashes($val["title"]);
$newsid = stripslashes($val["newsid"]);
print "<a href=\"news.php?newsid=$newsid\" class=\"en_b\"><img src=\"./images/bullet_b.gif\" width=\"11\" height=\"9\" border=\"0\">$title</a><br>";
}
}
?>
</td>
</tr>
</table>
<?php
if (!empty($homecataresult)) {
while ( list($key,$val)=each($homecataresult) ) {
$catalogname = stripslashes($val["catalogname"]);
$catalogid = stripslashes($val["catalogid"]);
$result = $db->getnewsbycatid(0,$front_catnewsonhomerecord,$catalogid);
?>
<table width="410" border="0" cellspacing="0" cellpadding="4">
<tr>
<td bgcolor="#F2F2F2" class="menu_in"><?php print "$catalogname"; ?></td>
<td bgcolor="#F2F2F2" class="menu_in" align="right"><a href="new/catalog.php?catalogid=<?php print "$catalogid"; ?>" class="en_b"><img src="new/images/bullet_b.gif" width="11" height="9" border="0"><?php print "$front_more"; ?>...</a></td>
</tr>
<tr>
<td colspan="2">
<?php
if (!empty($result)) {
while ( list($key,$val)=each($result) ) {
$title = stripslashes($val["title"]);
$newsid = stripslashes($val["newsid"]);
?>
<a href="new/news.php?newsid=<?php print "$newsid"; ?>" class="en_b"><img src="new/images/bullet_b.gif" width="11" height="9" border="0"><?php print "$title"; ?></a><br>
<?php
}
}
?>
</td>
</tr>
</table>
<?php
}
}
?>
</td>
<td class="table_02" background="new/images/right_bg.gif" valign="top">
<table width="200" border="0" cellspacing="0" cellpadding="6">
<tr>
<td>&nbsp;

</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
ส่วนนี้คือส่วนฐานข้อมูลคับ

Databasw



Tag : PHP, CakePHP







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2010-11-08 02:35:25 By : iwasaki1 View : 878 Reply : 1
 

 

No. 1



โพสกระทู้ ( 74,058 )
บทความ ( 838 )

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

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

Quote:
print "<tr>
<td align=\"center\"><img src=\"$picturepath$picture\" alt=\"$title\"></td>
</tr>";


ร้าจะเป็นตรงนี้หรือเปล่าครับ ตรวจสอบชื่อไฟล์และ path ให้ถูกต้องด้วยน่ะครับ






แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-11-08 06:37:42 By : webmaster
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : ผมหาส่วนที่โชว์รูปออกมาไม่เจออ่าคับ งงมากเลยคับ วอนผู้รู้ช่วยทีคับ ช่วยยแก้ละใส่ ในไฟล์ของ หน้า index.php ให้ทีคับ
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ 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-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่