|
|
|
ผมทำ css แล้ว include php เข้าไป แต่ code php ไม่ทำงาน มันเป็นเพราะ css หรือเปล่า ดู code ให้หด้วย |
|
|
|
|
|
|
|
แล้ว Code PHP ที่ ไฟล์ report1.php ทำงานได้ ไหม ครับท่าจะให้ ดี
เอาไฟล์ report.php มา ด้วย นะ ครับ พี่ๆ ที่นี้ เค้า เก่งๆ ทั้ง นั้น ^^
|
|
|
|
|
Date :
2010-01-29 12:00:53 |
By :
popnakub |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
report1.php
ใช้งานได้ครับ
ลองทำ html include php ใช้ได้ตามปกติครับ งงครับ
Code (VB.NET)
<html>
<head>
<title>IT Goko Sring Service</title>
<style type="text/css">
<!--
.style1 {color: #0000FF}
.style3 {color: #000000}
.style4 {color: #FF0000}
-->
</style>
</head>
<body>
<?
$objConnect = mysql_connect("localhost","root","999999") or die("Error Connect to Database");
$objDB = mysql_select_db("online");
$strSQL = "SELECT * FROM form ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$Num_Rows = mysql_num_rows($objQuery);
$Per_Page = 20; // Per Page
$Page = $_GET["Page"];
if(!$_GET["Page"])
{
$Page=1;
}
$Prev_Page = $Page-1;
$Next_Page = $Page+1;
$Page_Start = (($Per_Page*$Page)-$Per_Page);
if($Num_Rows<=$Per_Page)
{
$Num_Pages =1;
}
else if(($Num_Rows % $Per_Page)==0)
{
$Num_Pages =($Num_Rows/$Per_Page) ;
}
else
{
$Num_Pages =($Num_Rows/$Per_Page)+1;
$Num_Pages = (int)$Num_Pages;
}
$strSQL .=" order by id ASC LIMIT $Page_Start , $Per_Page";
$objQuery = mysql_query($strSQL);
?>
<table width="1226" border="1">
<tr>
<th width="30"> <div align="center" class="style1">ID </div></th>
<th width="139"> <div align="center" class="style1">Name </div></th>
<th width="119"> <div align="center" class="style1">Section</div></th>
<th width="126"> <span class="style1">Date</span></th>
<th width="115"> <div align="center" class="style1">Time </div></th>
<th width="430"><span class="style1">Details</span></th>
<th width="221"><span class="style1">Status</span></th>
</tr>
<?
while($objResult = mysql_fetch_array($objQuery))
{
?>
<tr>
<td><div align="center"><?=$objResult["id"];?></div></td>
<td><div align="center">
<?=$objResult["name"];?>
</div></td>
<td><div align="center">
<?=$objResult["section"];?>
</div></td>
<td><div align="center"><strong>
<?=$objResult["date"];?>
:
<?=$objResult["date2"];?>
:
<?=$objResult["date3"];?>
</strong></div></td>
<td align="right"><div align="center"><strong>
<?=$objResult["time"];?>
:
<?=$objResult["time2"];?>
</strong></div></td>
<td align="right"><div align="center">
<?=$objResult["details"];?>
</div> </td>
<td align="right"><div align="center">
<?=$objResult["status"];?>
</div></td>
</tr>
<?
}
?>
</table>
<p><br>
<span class="style3"><span class="style4">Total</span>
<?= $Num_Rows;?>
<span class="style4">Record :</span>
<?=$Num_Pages;?>
<span class="style4">Page : </span>
<?
if($Prev_Page)
{
echo " <a href='$_SERVER[SCRIPT_NAME]?Page=$Prev_Page'><< Back</a> ";
}
for($i=1; $i<=$Num_Pages; $i++){
if($i != $Page)
{
echo "[ <a href='$_SERVER[SCRIPT_NAME]?Page=$i'>$i</a> ]";
}
else
{
echo "<b> $i </b>";
}
}
if($Page!=$Num_Pages)
{
echo " <a href ='$_SERVER[SCRIPT_NAME]?Page=$Next_Page'>Next>></a> ";
}
mysql_close($objConnect);
?>
</span></p>
<p><a href="index.php">หน้าแรก</a></p>
</body>
</html>
|
|
|
|
|
Date :
2010-01-29 12:04:35 |
By :
care123 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เวลาเขียน ควรใช้ <?php ไม่ใช่ <? ถึงแม้ <? จะใช้ได้(ในบางเครื่อง)ก็ตาม
|
|
|
|
|
Date :
2010-01-29 18:57:32 |
By :
mr.v |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|