|
|
|
เขียนระบบข่าวสารอัพขึ้นโฮสแล้วมีปัญหา ข่าวไม่แสดง ผมเขียนระบบข่าวสารโดยดูจากหนังสือ ตอนทดสอบกับ localhost |
|
|
|
|
|
|
|
$id_type=$_GET['id_type'];
include "function.php";
include "connect.php";
$sql="select * from tb_new where id_new='$id_view' ";
รับมา id_type แต่เอาไปใช้ id_view มันก็ไม่น่าจะออกนะครับ
|
|
|
|
|
Date :
2009-06-29 01:00:55 |
By :
plakrim |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
index.php มันส่งมาเป็นแบบนี้อ่าครับ
ผมเองก็งงไม่รู้จะแก้ยังไง
Code (PHP)
<?php
<html>
<head><title> ระบบจัดการข่าวสาร </title><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><style type="text/css">
<!--
body,td,th {
font-family: Arial, Helvetica, sans-serif;
}
-->
</style></head>
<body>
<H2> :: ระบบจัดการข่าวสาร :: </H2>
<?
include "function.php";
include "connect.php";
for ($i=1;$i<=count($newtype);$i++) {
echo "<B>$newtype[$i]</B><BR>";
echo "<UL>";
$sql="select * from tb_new where type_new='$i' ";
$result=mysql_db_query($dbname,$sql);
$total=mysql_num_rows($result);
$sql="select * from tb_new where type_new='$i' order by id_new desc limit 0,5";
$result=mysql_db_query($dbname,$sql);
while($r=mysql_fetch_array($result)) {
$id_new=$r[id_new];
$title_new=$r[title_new];
$type_new=$r[type_new];
$date_new=$r[date_new];
$time_new=$r[time_new];
echo "<LI>[$date_new] <A HREF='view.php?id_view=$id_new' TARGET='_blank'>$title_new</A></LI>";
}
if ($total>=5) {
echo "<LI> <A HREF='list.php?id_type=$i'>more...</A> </LI>";
}
echo "</UL>";
}
?>
</body>
</html>
?>
|
|
|
|
|
Date :
2009-06-29 01:34:37 |
By :
trojan983 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แก้ได้แล้วครับขอบคุณมากครับ หุหุ
$id_view=$_GET['id_view'];
include "function.php";
include "connect.php";
$sql="select * from tb_new where id_new='$id_view' ";
|
|
|
|
|
Date :
2009-06-29 01:37:22 |
By :
trojan983 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ดีจังค่ะ
|
|
|
|
|
Date :
2009-06-29 09:18:36 |
By :
kai9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|