|
|
|
ต้องการใช้ function กับ คำสั่ง php ในการแสดงข้อมูลแบบวนลูป |
|
|
|
|
|
|
|
ปัญหาคือ ผมลองเอาโค้ด 2 ชุดนี้ใส่รวมกันไม่ได้ครับ ลองหลายวิธีแล้วครับ
โค้ดในการแสดงข้อมูลครับ
Code (PHP)
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874">
</head>
<body>
<?
include("menu.php");
$host="localhost";
$username="root";
$password="root";
$db="police_mamber";
$tb="ob";
$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
$objDB = mysql_select_db("police_mamber");
$strSQL = "SELECT * FROM ob ";
mysql_db_query($dbname,"SET NAMES tis620");
mysql_query("SET character_set_database ='tis620'");
mysql_query("SET character_set_results ='tis620'");
mysql_query("SET character_set_client ='tis620'");
mysql_query("SET character_set_connection ='tis620'");
mysql_query("SET character_set_system ='tis620'");
mysql_query("collation_connection = tis620_thai_ci");
mysql_query("collation_database = tis620_thai_ci");
mysql_query("collation_server = tis620_thai_ci");
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
echo "<font size= 3> $u_y ";
?>
<?
$Num_Rows = mysql_num_rows($objQuery);
$Per_Page = 100; // 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);
?>
<center><table width="1000" border="1">
<tr>
<center>
<th width="70"> <div align="center" >รหัส</div></th>
<th width="60"> <div align="center" >รหัสประจำตัวประชาชน</div></th>
<th width="70"> <div align="center" >ยศ</div></th>
<th width="70"> <div align="center" >เพศ</div></th>
<th width="180"> <div align="center" >ชื่อ</div></th>
<th width="180"> <div align="center" >นามสกุล</div></th>
<th width="150"> <div align="center" >ตำแหน่ง</div></th>
<th width="150"> <div align="center" >วันเข้าทำงาน</div></th>
<th width="150"> <div align="center" >รุ่นที่</div></th>
<th width="71"> <div align="center" >แก้ไข</div></th>
</>
</tr>
<?
while($objResult = mysql_fetch_array($objQuery))
{
?>
<tr>
<td><?=$objResult["id"];?></div></td>
<td><?=$objResult["idpeople"];?></td>
<td><?=$objResult["rank"];?></td>
<td><?=$objResult["sex"];?></td>
<td><?=$objResult["name"];?></div></td>
<td ><?=$objResult["lastname"];?></td>
<td ><?=$objResult["idposition"];?></td>
<td ><?=$objResult["daypolice"];?></td>
<td ><?=$u_y;?></td>
<td bgcolor="#EEEEEE"><a href='dbpoliceshow.php?id=<?php echo $objResult["id"]; ?>',<?=$objResult["FilesID"];?>>edit</a>
</tr>
<?
}
?>
</table>
<br>
Total <?= $Num_Rows;?> Record : <?=$Num_Pages;?> Page :
<?
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);
?>
</body>
</html>
ผมต้องการใช้ function เกี่ยวกับวันที่ลงไปด้วย
Code (PHP)
<?
function displaydate($daypolice) {
$date_array=explode("-",$daypolice);
$y=$date_array[0]+543;
$m=$date_array[1];
$d=$date_array[2];
$displaydate="$d/$m/$y";
return $displaydate;
}
$datadate = date("d-m-y");
?>
<?
list($bday, $bmonth, $byear)= explode("/",displaydate($daypolice));
$u_y=$byear-2539;
$u_m=$bmonth;
$u_d=$bday;
echo "<font size= 3> $u_y ";
?>
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2013-03-28 11:11:45 |
By :
puldool |
View :
812 |
Reply :
9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เอาใส่ตรงไหนครับ
|
|
|
|
|
Date :
2013-03-28 11:55:49 |
By :
popypreaw |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
พี่แมวครับ ผมลองทำดูแล้วนะครับพี่ แต่ผลออกมา มันก็ไม่เป็นไปตาม รูปแบบน่ะครับ
ตอนแรก ผมลองหาวิธี ที่ทำให้มันอยู่ในลูป ครับ เพราะตอนแรก เอาไว้นอกลูป ก็ยังไม่ได้ เอาไว้ในลูป ก็ error มั่วไปหมด
1.วันที่ ไม่เป็นวันไทยตาม function
2.ไม่มีการเอาปีไทยมาลบ แต่มันขึ้นว่า - 1996
(เอา +543 มา -2539 =1996 ซึ่งความจริงต้อง เป็นปีไทยเช่น ปี 2000+543 = 2543 -2539 = 4 ถึงจะได้ปีที่ถูกต้อง )
[u]คือเหมือนว่า function ไม่ได้เอาข้อมูลมาคำนวณครับ[/u]
Code (PHP)
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874">
</head>
<body>
<?
function displaydate($daypolice) {
$date_array=explode("-",$daypolice);
$y=$date_array[0]+543;
$m=$date_array[1];
$d=$date_array[2];
$displaydate="$d/$m/$y";
return $displaydate;
}
$datadate = date("d-m-y");
list($bday, $bmonth, $byear)= explode("/",displaydate($daypolice));
$u_y=$byear-2539;
$u_m=$bmonth;
$u_d=$bday;
echo "<font size= 3> $u_y ";
?>
<?
include("menu.php");
$host="localhost";
$username="root";
$password="root";
$db="police_mamber";
$tb="ob";
$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
$objDB = mysql_select_db("police_mamber");
$strSQL = "SELECT * FROM ob ";
mysql_db_query($dbname,"SET NAMES tis620");
mysql_query("SET character_set_database ='tis620'");
mysql_query("SET character_set_results ='tis620'");
mysql_query("SET character_set_client ='tis620'");
mysql_query("SET character_set_connection ='tis620'");
mysql_query("SET character_set_system ='tis620'");
mysql_query("collation_connection = tis620_thai_ci");
mysql_query("collation_database = tis620_thai_ci");
mysql_query("collation_server = tis620_thai_ci");
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
echo "<font size= 3> $u_y ";
?>
<?
$Num_Rows = mysql_num_rows($objQuery);
$Per_Page = 100; // 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);
?>
<center><table width="1000" border="1">
<tr>
<center>
<th width="70"> <div align="center" >รหัส</div></th>
<th width="60"> <div align="center" >รหัสประจำตัวประชาชน</div></th>
<th width="70"> <div align="center" >ยศ</div></th>
<th width="70"> <div align="center" >เพศ</div></th>
<th width="180"> <div align="center" >ชื่อ</div></th>
<th width="180"> <div align="center" >นามสกุล</div></th>
<th width="150"> <div align="center" >ตำแหน่ง</div></th>
<th width="150"> <div align="center" >วันเข้าทำงาน</div></th>
<th width="150"> <div align="center" >รุ่นที่</div></th>
<th width="71"> <div align="center" >แก้ไข</div></th>
</>
</tr>
<?
while($objResult = mysql_fetch_array($objQuery))
{
?>
<tr>
<td><?=$objResult["id"];?></div></td>
<td><?=$objResult["idpeople"];?></td>
<td><?=$objResult["rank"];?></td>
<td><?=$objResult["sex"];?></td>
<td><?=$objResult["name"];?></div></td>
<td ><?=$objResult["lastname"];?></td>
<td ><?=$objResult["idposition"];?></td>
<td ><?=$objResult["daypolice"];?></td>
<td ><?=$u_y;?></td>
<td bgcolor="#EEEEEE"><a href='dbpoliceshow.php?id=<?php echo $objResult["id"]; ?>',<?=$objResult["FilesID"];?>>edit</a>
</tr>
<?
}
?>
</table>
<br>
Total <?= $Num_Rows;?> Record : <?=$Num_Pages;?> Page :
<?
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);
?>
</body>
</html>
|
ประวัติการแก้ไข 2013-03-28 12:44:40
|
|
|
|
Date :
2013-03-28 12:43:59 |
By :
puldool |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ก็น้องไม่ได้เอา "ค่าจากฐานข้อมูลมาคำนวณนี่ครับ"
list($bday, $bmonth, $byear)= explode("/",displaydate($daypolice));
$u_y=$byear-2539;
$u_m=$bmonth;
$u_d=$bday;
$daypolice นี่มาจากไหน แล้วจะคำนวณตรงนี้ทำไม
ทำไมไม่ไปคำนวนในลูป
Code (PHP)
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874">
</head>
<body>
<?
function displaydate($daypolice) {
$date_array=explode("-",$daypolice);
$y=$date_array[0]+543;
$m=$date_array[1];
$d=$date_array[2];
$displaydate="$d/$m/$y";
return $displaydate;
}
$datadate = date("d-m-y");
/*list($bday, $bmonth, $byear)= explode("/",displaydate($daypolice));
$u_y=$byear-2539;
$u_m=$bmonth;
$u_d=$bday;
echo "<font size= 3> $u_y ";*/
?>
<?
include("menu.php");
$host="localhost";
$username="root";
$password="root";
$db="police_mamber";
$tb="ob";
$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
$objDB = mysql_select_db("police_mamber");
$strSQL = "SELECT * FROM ob ";
mysql_db_query($dbname,"SET NAMES tis620");
mysql_query("SET character_set_database ='tis620'");
mysql_query("SET character_set_results ='tis620'");
mysql_query("SET character_set_client ='tis620'");
mysql_query("SET character_set_connection ='tis620'");
mysql_query("SET character_set_system ='tis620'");
mysql_query("collation_connection = tis620_thai_ci");
mysql_query("collation_database = tis620_thai_ci");
mysql_query("collation_server = tis620_thai_ci");
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
echo "<font size= 3> $u_y ";
?>
<?
$Num_Rows = mysql_num_rows($objQuery);
$Per_Page = 100; // 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);
?>
<center><table width="1000" border="1">
<tr>
<center>
<th width="70"> <div align="center" >รหัส</div></th>
<th width="60"> <div align="center" >รหัสประจำตัวประชาชน</div></th>
<th width="70"> <div align="center" >ยศ</div></th>
<th width="70"> <div align="center" >เพศ</div></th>
<th width="180"> <div align="center" >ชื่อ</div></th>
<th width="180"> <div align="center" >นามสกุล</div></th>
<th width="150"> <div align="center" >ตำแหน่ง</div></th>
<th width="150"> <div align="center" >วันเข้าทำงาน</div></th>
<th width="150"> <div align="center" >รุ่นที่</div></th>
<th width="71"> <div align="center" >แก้ไข</div></th>
</>
</tr>
<?
while($objResult = mysql_fetch_array($objQuery))
{
// ควรจะมาอยู่ตรงนี้ไม่ใช่หรือ
list($bday, $bmonth, $byear)= explode("/",displaydate($objResult["daypolice"]));
$u_y=$byear-2539;
$u_m=$bmonth;
$u_d=$bday;
?>
<tr>
<td><?=$objResult["id"];?></div></td>
<td><?=$objResult["idpeople"];?></td>
<td><?=$objResult["rank"];?></td>
<td><?=$objResult["sex"];?></td>
<td><?=$objResult["name"];?></div></td>
<td ><?=$objResult["lastname"];?></td>
<td ><?=$objResult["idposition"];?></td>
<td ><?=$objResult["daypolice"];?></td>
<td ><?=$u_y;?></td>
<td bgcolor="#EEEEEE"><a href='dbpoliceshow.php?id=<?php echo $objResult["id"]; ?>',<?=$objResult["FilesID"];?>>edit</a>
</tr>
<?
}
?>
</table>
<br>
Total <?= $Num_Rows;?> Record : <?=$Num_Pages;?> Page :
<?
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);
?>
</body>
</html>
|
|
|
|
|
Date :
2013-03-28 12:58:53 |
By :
cookiephp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1.คำนวณออกมาได้แล้วครับ ตอนแรกผมไม่ค่อยเข้าใจหลักการที่จะใช้ฟังชั่น กับลูป เคยลองวางดู แปลว่า วางผิดตำแหน่ง
2.วันที่ ที่ต้องการให้เป็นวันไทย ยังไม่ขึ้นเลยครับ ใช้วิธีการเดียวกันคือไว้ในลูป ไหมครับ
พี่แมวสุดยอดจริงๆ
|
ประวัติการแก้ไข 2013-03-28 13:23:35 2013-03-28 13:27:05
|
|
|
|
Date :
2013-03-28 13:21:35 |
By :
puldool |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใช่ครับ จะคำนวณอะไร ก็ต้องคำนวณมันตรงนั้น
|
|
|
|
|
Date :
2013-03-28 13:42:19 |
By :
cookiephp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากครับ
|
ประวัติการแก้ไข 2013-03-28 14:32:23 2013-03-28 14:40:23 2013-03-28 14:42:52
|
|
|
|
Date :
2013-03-28 14:31:59 |
By :
puldool |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองค้นหาดูก่อนครับ พลีส
|
|
|
|
|
Date :
2013-03-28 14:39:23 |
By :
cookiephp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้วครับพี่ ลองหา ตัวแปรมาใส่ ขอบคุณคร้าบ
|
|
|
|
|
Date :
2013-03-28 14:43:33 |
By :
puldool |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|