|
|
|
ทำมันไฟล์บางแถวในฐานข้อมูลไม่ไปอยู่ในตาราง ช่วยดูให้หน่อยคับว่าตรงไหนผิดไปหรือป่าว จนปัญญาจริงๆ |
|
|
|
|
|
|
|
Code (PHP)
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<?php
session_start();
echo $_SESSION['userID'];
?>
<?php require_once('Connections/myconnect.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
if (PHP_VERSION < 6) {
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
}
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
$maxRows_s = 11;
$pageNum_s = 0;
if (isset($_GET['pageNum_s'])) {
$pageNum_s = $_GET['pageNum_s'];
}
$startRow_s = $pageNum_s * $maxRows_s;
mysql_select_db($database_myconnect, $myconnect);
$query_s = "SELECT file.fileId,fileName,type,size,up.Date,up.Title,web.webName,status.statusId,status.statusName, p4p_login.Name FROM file INNER JOIN up ON file.upId=up.upId INNER JOIN web ON file .webId=web.webId INNER JOIN status ON file. statusId= status. statusId INNER JOIN p4p_login ON up.ID=p4p_login.ID";
$query_limit_s = sprintf("%s LIMIT %d, %d", $query_s, $startRow_s, $maxRows_s);
$s = mysql_query($query_limit_s, $myconnect) or die(mysql_error());
$row_s = mysql_fetch_assoc($s);
if (isset($_GET['totalRows_s'])) {
$totalRows_s = $_GET['totalRows_s'];
} else {
$all_s = mysql_query($query_s);
$totalRows_s = mysql_num_rows($all_s);
}
$totalPages_s = ceil($totalRows_s/$maxRows_s)-1;
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<!--
Design by TEMPLATED
http://templated.co
Released for free under the Creative Commons Attribution License
Name : Undeviating
Description: A two-column, fixed-width design with dark color scheme.
Version : 1.0
Released : 20140322
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>รายการไฟล์ที่ลงประกาศแล้ว</title>
<meta name="keywords" content="" />
<meta name="description" content="" />
<link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600,700,900|Quicksand:400,700|Questrial" rel="stylesheet" />
<link href="default.css" rel="stylesheet" type="text/css" media="all" />
<link href="fonts.css" rel="stylesheet" type="text/css" media="all" />
<!--[if IE 6]><link href="default_ie6.css" rel="stylesheet" type="text/css" /><![endif]-->
</head>
<body>
<div id="header-wrapper">
<div id="header" class="container">
<div id="logo">
<h1><a href="#">โปรแกรม Upload File</a></h1>
</div>
<div id="menu">
<ul>
<li><a href="upload.php" accesskey="2" title="">หน้าแรก</a></li>
<li class="active"><a href="#" accesskey="3" title="">รายการไฟล์ของฉัน</a></li>
<li><a href="logout.php" accesskey="4" title="">ออกจากระบบ</a></li>
</ul>
</div>
</div>
</div>
<div class="wrapper">
<div id="banner" class="container">
<h1 align="center"><font color = "#FF0000">รายการไฟล์ที่ลงประกาศแล้ว</font></h1>
<blockquote>
<blockquote>
<blockquote> </blockquote>
</blockquote>
</blockquote>
<table width="200" border="0" align="center">
<tr>
<td><img src="images/alert-icon.png" alt="" width="71" height="73" /></td>
<td nowrap="nowrap">= ไฟล์มีปัญหา</td>
<td><img src="images/icontexto-message-types-wait-blue.png" alt="" width="70" height="74" /></td>
<td nowrap="nowrap">= รอดำเนินการ</td>
<td><img src="images/Cute-Ball-Go-icon.png" alt="" width="70" height="74" /></td>
<td nowrap="nowrap">= เรียบร้อยแล้ว</td>
</tr>
</table>
<p> </p>
<table width="80%" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#CCCCCC">
<tr height="50">
<td align="center" bgcolor="#2056AC"><font color="#FFFFFF">ลำดับ</font></td>
<td align="center" bgcolor="#2056AC"><font color="#FFFFFF">วันที่</font></td>
<td align="center" bgcolor="#2056AC"><font color="#FFFFFF">เรื่อง</font></td>
<td align="center" bgcolor="#2056AC"><font color="#FFFFFF">ไฟล์</font></td>
<td align="center" bgcolor="#2056AC"><font color="#FFFFFF">ประเภท</font></td>
<td align="center" bgcolor="#2056AC"><font color="#FFFFFF">เว็บ</font></td>
<td align="center" bgcolor="#2056AC"><font color="#FFFFFF">ชื่อ-สกุล</font></td>
<td align="center" bgcolor="#2056AC"><font color="#FFFFFF">พิมพ์</font></td>
<td align="center" bgcolor="#2056AC"><font color="#FFFFFF">สถานะ</font></td>
</tr>
<?php $i = 1;while($row_s = mysql_fetch_array($s)){?>
<tr>
<td align="center" bgcolor="#E0E0E0"><?php echo $i; ?></td>
<td bgcolor="#E0E0E0"><?php echo $row_s['Date']; ?></td>
<td bgcolor="#E0E0E0"><?php echo $row_s['Title']; ?></td>
<td bgcolor="#E0E0E0"><?php echo $row_s['fileName']; ?></td>
<td bgcolor="#E0E0E0"><?php echo $row_s['type']; ?></td>
<td bgcolor="#E0E0E0"><?php echo $row_s['webName']; ?></td>
<td bgcolor="#E0E0E0"><?php echo $row_s['Name']; ?></td>
<td align="center" bgcolor="#E0E0E0" >
<a href="report.php?upId=<?=$row_s['fileId'];?>"><input name="" type="image" src="images/printt.png" align="absbottom" /></a></td>
<td align="center" bgcolor="#E0E0E0">
<?php
if ( $row_s['statusId']== '1')
{
echo '<input name="" type="image" src="images/icontexto-message-types-wait-blue.png"alt="" width="35" height="39" />';
}
elseif ( $row_s['statusId'] == '2')
{
echo '<input name="" type="image" src="images/alert-icon.png"alt="" width="35" height="39" />';
}
else
{
echo '<input name="" type="image" src="images/Cute-Ball-Go-icon.png"alt="" width="35" height="39" />';
{
?></td>
</tr>
<?php $i++;}?>
</table>
<style type="text/css">
.mynavi{
display:block;
width:25px;
height:20px;
text-align:center;
text-decoration:none;margin-right:3px;
background-color:#0066CC;
color:#FFFFFF;
float:left;
font-size:12px;
line-height:20px;
}
.mynavi:hover{
display:block;
width:25px;
height:20px;
text-align:center;
text-decoration:none;margin-right:3px;
background-color:#000000;
color:#FFFFFF;
float:left;
font-size:12px;
line-height:20px;
}
.pgnavi{
display:block;
height:25px;
font-size:12px;
line-height:20px;
float:left;
margin-right:3px;
}
</style>
</br>
<link href= "box.css" rel ="stylesheet" type="text/css"/>
<p><center><div class="boxmon">
</br>
<?php
for($dw_i=0;$dw_i<=$totalPages_s;$dw_i++){
echo'<a href="?pageNum_s=',$dw_i,'"class="mynavi">',($dw_i+1),'</a>';
}
?>
</p></div></center>
<table width="200" border="0" align="center">
<tr>
<td><font color = "#FF0000"><a href="upload.php"><img src="images/button-304224_640.png" alt="" width="64" height="59" /></a></font></td>
<td nowrap="nowrap"><h1><font color = "#FF0000"> <a href="home.php">เพิ่มรายการลงประกาศ</a></font></h1></td>
</tr>
</table>
</div>
</div>
</div>
<div id="copyright">
<p>© Untitled. All rights reserved. | Photos by <a href="http://fotogrph.com/">Fotogrph</a> | Design by <a href="http://templated.co" rel="nofollow">TEMPLATED</a>.</p>
</div>
</body>
</html>
<?php
}
}
mysql_free_result($s)
?>
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2015-11-05 15:42:21 |
By :
งานงอก |
View :
719 |
Reply :
7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คลิ๊กขวา view souce ดูซิครับว่า มัน ออก code ตารางถูกไหม
|
|
|
|
|
Date :
2015-11-05 15:47:06 |
By :
progamer2000 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
13<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<!--
Design by TEMPLATED
http://templated.co
Released for free under the Creative Commons Attribution License
Name : Undeviating
Description: A two-column, fixed-width design with dark color scheme.
Version : 1.0
Released : 20140322
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>รายการไฟล์ที่ลงประกาศแล้ว</title>
<meta name="keywords" content="" />
<meta name="description" content="" />
<link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600,700,900|Quicksand:400,700|Questrial" rel="stylesheet" />
<link href="default.css" rel="stylesheet" type="text/css" media="all" />
<link href="fonts.css" rel="stylesheet" type="text/css" media="all" />
<!--[if IE 6]><link href="default_ie6.css" rel="stylesheet" type="text/css" /><![endif]-->
</head>
<body>
<div id="header-wrapper">
<div id="header" class="container">
<div id="logo">
<h1><a href="#">โปรแกรม Upload File</a></h1>
</div>
<div id="menu">
<ul>
<li><a href="upload.php" accesskey="2" title="">หน้าแรก</a></li>
<li class="active"><a href="#" accesskey="3" title="">รายการไฟล์ของฉัน</a></li>
<li><a href="logout.php" accesskey="4" title="">ออกจากระบบ</a></li>
</ul>
</div>
</div>
</div>
<div class="wrapper">
<div id="banner" class="container">
<h1 align="center"><font color = "#FF0000">รายการไฟล์ที่ลงประกาศแล้ว</font></h1>
<blockquote>
<blockquote>
<blockquote> </blockquote>
</blockquote>
</blockquote>
<table width="200" border="0" align="center">
<tr>
<td><img src="images/alert-icon.png" alt="" width="71" height="73" /></td>
<td nowrap="nowrap">= ไฟล์มีปัญหา</td>
<td><img src="images/icontexto-message-types-wait-blue.png" alt="" width="70" height="74" /></td>
<td nowrap="nowrap">= รอดำเนินการ</td>
<td><img src="images/Cute-Ball-Go-icon.png" alt="" width="70" height="74" /></td>
<td nowrap="nowrap">= เรียบร้อยแล้ว</td>
</tr>
</table>
<p> </p>
<table width="80%" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#CCCCCC">
<tr height="50">
<td align="center" bgcolor="#2056AC"><font color="#FFFFFF">ลำดับ</font></td>
<td align="center" bgcolor="#2056AC"><font color="#FFFFFF">วันที่</font></td>
<td align="center" bgcolor="#2056AC"><font color="#FFFFFF">เรื่อง</font></td>
<td align="center" bgcolor="#2056AC"><font color="#FFFFFF">ไฟล์</font></td>
<td align="center" bgcolor="#2056AC"><font color="#FFFFFF">ประเภท</font></td>
<td align="center" bgcolor="#2056AC"><font color="#FFFFFF">เว็บ</font></td>
<td align="center" bgcolor="#2056AC"><font color="#FFFFFF">ชื่อ-สกุล</font></td>
<td align="center" bgcolor="#2056AC"><font color="#FFFFFF">พิมพ์</font></td>
<td align="center" bgcolor="#2056AC"><font color="#FFFFFF">สถานะ</font></td>
</tr>
<tr>
<td align="center" bgcolor="#E0E0E0">1</td>
<td bgcolor="#E0E0E0">30-10-2015 14:51:48</td>
<td bgcolor="#E0E0E0">เอางัยดี</td>
<td bgcolor="#E0E0E0">error6.png</td>
<td bgcolor="#E0E0E0">image/png</td>
<td bgcolor="#E0E0E0">ระบบบริหารคุณภาพโรงพยาบาลศรีธัญญา(ISO)</td>
<td bgcolor="#E0E0E0">สุธรรมา สุวรรณศรี</td>
<td align="center" bgcolor="#E0E0E0" >
<a href="report.php?upId=30"><input name="" type="image" src="images/printt.png" align="absbottom" /></a></td>
<td align="center" bgcolor="#E0E0E0">
<input name="" type="image" src="images/icontexto-message-types-wait-blue.png"alt="" width="35" height="39" /> <tr>
<td align="center" bgcolor="#E0E0E0">1</td>
<td bgcolor="#E0E0E0">29-10-2015 14:34:29</td>
<td bgcolor="#E0E0E0">ยากหรือว่าเราไม่เข้าใจ</td>
<td bgcolor="#E0E0E0">error7.png</td>
<td bgcolor="#E0E0E0">image/png</td>
<td bgcolor="#E0E0E0">ทุกเว็บ(allweb)</td>
<td bgcolor="#E0E0E0">ปาริชาติ พาหนองแวง</td>
<td align="center" bgcolor="#E0E0E0" >
<a href="report.php?upId=31"><input name="" type="image" src="images/printt.png" align="absbottom" /></a></td>
<td align="center" bgcolor="#E0E0E0">
<input name="" type="image" src="images/alert-icon.png"alt="" width="35" height="39" /> <tr>
<td align="center" bgcolor="#E0E0E0">1</td>
<td bgcolor="#E0E0E0">30-10-2015 10:04:00</td>
<td bgcolor="#E0E0E0">ooooooooooooooooooo</td>
<td bgcolor="#E0E0E0">php+sql.rar</td>
<td bgcolor="#E0E0E0">application/octet-stream</td>
<td bgcolor="#E0E0E0">ระบบบริหารคุณภาพโรงพยาบาลศรีธัญญา(ISO)</td>
<td bgcolor="#E0E0E0">สุธรรมา สุวรรณศรี</td>
<td align="center" bgcolor="#E0E0E0" >
<a href="report.php?upId=33"><input name="" type="image" src="images/printt.png" align="absbottom" /></a></td>
<td align="center" bgcolor="#E0E0E0">
<input name="" type="image" src="images/alert-icon.png"alt="" width="35" height="39" /> <tr>
<td align="center" bgcolor="#E0E0E0">1</td>
<td bgcolor="#E0E0E0">04-11-2015 11:50:52</td>
<td bgcolor="#E0E0E0">กกกกกกกกกกกกกกกกกกกกกกกกกกกกกกกกกกกกกกก</td>
<td bgcolor="#E0E0E0">edit.png</td>
<td bgcolor="#E0E0E0">image/png</td>
<td bgcolor="#E0E0E0">คลังความรู้โรงพยาบาลศรีธัญญา(Srithanya KM)</td>
<td bgcolor="#E0E0E0">สุธรรมา สุวรรณศรี</td>
<td align="center" bgcolor="#E0E0E0" >
<a href="report.php?upId=35"><input name="" type="image" src="images/printt.png" align="absbottom" /></a></td>
<td align="center" bgcolor="#E0E0E0">
<input name="" type="image" src="images/Cute-Ball-Go-icon.png"alt="" width="35" height="39" /></td>
</tr>
</table>
<style type="text/css">
.mynavi{
display:block;
width:25px;
height:20px;
text-align:center;
text-decoration:none;margin-right:3px;
background-color:#0066CC;
color:#FFFFFF;
float:left;
font-size:12px;
line-height:20px;
}
.mynavi:hover{
display:block;
width:25px;
height:20px;
text-align:center;
text-decoration:none;margin-right:3px;
background-color:#000000;
color:#FFFFFF;
float:left;
font-size:12px;
line-height:20px;
}
.pgnavi{
display:block;
height:25px;
font-size:12px;
line-height:20px;
float:left;
margin-right:3px;
}
</style>
</br>
<link href= "box.css" rel ="stylesheet" type="text/css"/>
<p><center><div class="boxmon">
</br>
<a href="?pageNum_s=0"class="mynavi">1</a> </p></div></center>
<table width="200" border="0" align="center">
<tr>
<td><font color = "#FF0000"><a href="upload.php"><img src="images/button-304224_640.png" alt="" width="64" height="59" /></a></font></td>
<td nowrap="nowrap"><h1><font color = "#FF0000"> <a href="home.php">เพิ่มรายการลงประกาศ</a></font></h1></td>
</tr>
</table>
</div>
</div>
</div>
<div id="copyright">
<p>© Untitled. All rights reserved. | Photos by <a href="http://fotogrph.com/">Fotogrph</a> | Design by <a href="http://templated.co" rel="nofollow">TEMPLATED</a>.</p>
</div>
</body>
</html>
<tr>
<td align="center" bgcolor="#E0E0E0">2</td>
<td bgcolor="#E0E0E0">04-11-2015 11:51:12</td>
<td bgcolor="#E0E0E0">ดดดดดดดดดดดดดดดดดดดดดดดดดดดด</td>
<td bgcolor="#E0E0E0">204.png</td>
<td bgcolor="#E0E0E0">image/png</td>
<td bgcolor="#E0E0E0">ระบบสารสนเทศเพื่อการจัดการ(MIS)</td>
<td bgcolor="#E0E0E0">สุธรรมา สุวรรณศรี</td>
<td align="center" bgcolor="#E0E0E0" >
<a href="report.php?upId=36"><input name="" type="image" src="images/printt.png" align="absbottom" /></a></td>
<td align="center" bgcolor="#E0E0E0">
<input name="" type="image" src="images/icontexto-message-types-wait-blue.png"alt="" width="35" height="39" /> <tr>
<td align="center" bgcolor="#E0E0E0">2</td>
<td bgcolor="#E0E0E0">04-11-2015 13:19:30</td>
<td bgcolor="#E0E0E0">าาาาาาาาาาาาาาาาาาาาาาาาาาาาา</td>
<td bgcolor="#E0E0E0">1111.png</td>
<td bgcolor="#E0E0E0">image/png</td>
<td bgcolor="#E0E0E0">ระบบบริหารคุณภาพโรงพยาบาลศรีธัญญา(ISO)</td>
<td bgcolor="#E0E0E0">สุธรรมา สุวรรณศรี</td>
<td align="center" bgcolor="#E0E0E0" >
<a href="report.php?upId=37"><input name="" type="image" src="images/printt.png" align="absbottom" /></a></td>
<td align="center" bgcolor="#E0E0E0">
<input name="" type="image" src="images/icontexto-message-types-wait-blue.png"alt="" width="35" height="39" /> <tr>
<td align="center" bgcolor="#E0E0E0">2</td>
<td bgcolor="#E0E0E0">04-11-2015 13:20:46</td>
<td bgcolor="#E0E0E0">ํษซซซซซซซซซซซซซซซซ</td>
<td bgcolor="#E0E0E0">204-1.png</td>
<td bgcolor="#E0E0E0">image/png</td>
<td bgcolor="#E0E0E0">โรงพยาบาลศรีธัญญา(Srithanya )</td>
<td bgcolor="#E0E0E0">สุธรรมา สุวรรณศรี</td>
<td align="center" bgcolor="#E0E0E0" >
<a href="report.php?upId=38"><input name="" type="image" src="images/printt.png" align="absbottom" /></a></td>
<td align="center" bgcolor="#E0E0E0">
<input name="" type="image" src="images/Cute-Ball-Go-icon.png"alt="" width="35" height="39" /></td>
</tr>
</table>
<style type="text/css">
.mynavi{
display:block;
width:25px;
height:20px;
text-align:center;
text-decoration:none;margin-right:3px;
background-color:#0066CC;
color:#FFFFFF;
float:left;
font-size:12px;
line-height:20px;
}
.mynavi:hover{
display:block;
width:25px;
height:20px;
text-align:center;
text-decoration:none;margin-right:3px;
background-color:#000000;
color:#FFFFFF;
float:left;
font-size:12px;
line-height:20px;
}
.pgnavi{
display:block;
height:25px;
font-size:12px;
line-height:20px;
float:left;
margin-right:3px;
}
</style>
</br>
<link href= "box.css" rel ="stylesheet" type="text/css"/>
<p><center><div class="boxmon">
</br>
<a href="?pageNum_s=0"class="mynavi">1</a> </p></div></center>
<table width="200" border="0" align="center">
<tr>
<td><font color = "#FF0000"><a href="upload.php"><img src="images/button-304224_640.png" alt="" width="64" height="59" /></a></font></td>
<td nowrap="nowrap"><h1><font color = "#FF0000"> <a href="home.php">เพิ่มรายการลงประกาศ</a></font></h1></td>
</tr>
</table>
</div>
</div>
</div>
<div id="copyright">
<p>© Untitled. All rights reserved. | Photos by <a href="http://fotogrph.com/">Fotogrph</a> | Design by <a href="http://templated.co" rel="nofollow">TEMPLATED</a>.</p>
</div>
</body>
</html>
<tr>
<td align="center" bgcolor="#E0E0E0">3</td>
<td bgcolor="#E0E0E0">05-11-2015 09:36:25</td>
<td bgcolor="#E0E0E0">ASflA:S<vns:ALdjg</td>
<td bgcolor="#E0E0E0">ki.png</td>
<td bgcolor="#E0E0E0">image/png</td>
<td bgcolor="#E0E0E0">คลังความรู้โรงพยาบาลศรีธัญญา(Srithanya KM)</td>
<td bgcolor="#E0E0E0">สุธรรมา สุวรรณศรี</td>
<td align="center" bgcolor="#E0E0E0" >
<a href="report.php?upId=39"><input name="" type="image" src="images/printt.png" align="absbottom" /></a></td>
<td align="center" bgcolor="#E0E0E0">
<input name="" type="image" src="images/icontexto-message-types-wait-blue.png"alt="" width="35" height="39" /> <tr>
<td align="center" bgcolor="#E0E0E0">3</td>
<td bgcolor="#E0E0E0">05-11-2015 10:34:37</td>
<td bgcolor="#E0E0E0">hhhhhhhhhhhhhhhhhhhhhhhhh</td>
<td bgcolor="#E0E0E0">print.png</td>
<td bgcolor="#E0E0E0">image/png</td>
<td bgcolor="#E0E0E0">คลังความรู้โรงพยาบาลศรีธัญญา(Srithanya KM)</td>
<td bgcolor="#E0E0E0">สุธรรมา สุวรรณศรี</td>
<td align="center" bgcolor="#E0E0E0" >
<a href="report.php?upId=40"><input name="" type="image" src="images/printt.png" align="absbottom" /></a></td>
<td align="center" bgcolor="#E0E0E0">
<input name="" type="image" src="images/icontexto-message-types-wait-blue.png"alt="" width="35" height="39" /> <tr>
<td align="center" bgcolor="#E0E0E0">3</td>
<td bgcolor="#E0E0E0">05-11-2015 10:35:21</td>
<td bgcolor="#E0E0E0">hhhhhhhhhhhhhhhhhhhhhhh</td>
<td bgcolor="#E0E0E0">print.png</td>
<td bgcolor="#E0E0E0">image/png</td>
<td bgcolor="#E0E0E0">ระบบสารสนเทศเพื่อการจัดการ(MIS)</td>
<td bgcolor="#E0E0E0">สุธรรมา สุวรรณศรี</td>
<td align="center" bgcolor="#E0E0E0" >
<a href="report.php?upId=41"><input name="" type="image" src="images/printt.png" align="absbottom" /></a></td>
<td align="center" bgcolor="#E0E0E0">
<input name="" type="image" src="images/Cute-Ball-Go-icon.png"alt="" width="35" height="39" /></td>
</tr>
</table>
<style type="text/css">
.mynavi{
display:block;
width:25px;
height:20px;
text-align:center;
text-decoration:none;margin-right:3px;
background-color:#0066CC;
color:#FFFFFF;
float:left;
font-size:12px;
line-height:20px;
}
.mynavi:hover{
display:block;
width:25px;
height:20px;
text-align:center;
text-decoration:none;margin-right:3px;
background-color:#000000;
color:#FFFFFF;
float:left;
font-size:12px;
line-height:20px;
}
.pgnavi{
display:block;
height:25px;
font-size:12px;
line-height:20px;
float:left;
margin-right:3px;
}
</style>
</br>
<link href= "box.css" rel ="stylesheet" type="text/css"/>
<p><center><div class="boxmon">
</br>
<a href="?pageNum_s=0"class="mynavi">1</a> </p></div></center>
<table width="200" border="0" align="center">
<tr>
<td><font color = "#FF0000"><a href="upload.php"><img src="images/button-304224_640.png" alt="" width="64" height="59" /></a></font></td>
<td nowrap="nowrap"><h1><font color = "#FF0000"> <a href="home.php">เพิ่มรายการลงประกาศ</a></font></h1></td>
</tr>
</table>
</div>
</div>
</div>
<div id="copyright">
<p>© Untitled. All rights reserved. | Photos by <a href="http://fotogrph.com/">Fotogrph</a> | Design by <a href="http://templated.co" rel="nofollow">TEMPLATED</a>.</p>
</div>
</body>
</html>
|
|
|
|
|
Date :
2015-11-05 15:55:08 |
By :
งานงอก |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ออกโค๊ดนี้มา 3 อันเลย ทั้งที่ควรจะออกแค่ อันเดียว
Code (PHP)
<style type="text/css">
.mynavi{
display:block;
width:25px;
height:20px;
text-align:center;
text-decoration:none;margin-right:3px;
background-color:#0066CC;
color:#FFFFFF;
float:left;
font-size:12px;
line-height:20px;
}
.mynavi:hover{
display:block;
width:25px;
height:20px;
text-align:center;
text-decoration:none;margin-right:3px;
background-color:#000000;
color:#FFFFFF;
float:left;
font-size:12px;
line-height:20px;
}
.pgnavi{
display:block;
height:25px;
font-size:12px;
line-height:20px;
float:left;
margin-right:3px;
}
</style>
|
|
|
|
|
Date :
2015-11-05 15:56:26 |
By :
งานงอก |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เขียนเวบ ควรจะแยกส่วนให้มัน ดูง่ายหน่อยก็ดีครับ ><
อย่างพวก css จะลิงค์จะเขียนแทรกเข้ามา ก็เอาไปไว้ใน head ครับ
เอามาแทรก ใน body ทำให้ดู code ละมัน เยอะเกินจำเป็น
ที่มัน มีหลายรอบก็เพราะเอาไปอยู่ใน loop for นะครับ
|
|
|
|
|
Date :
2015-11-05 16:00:21 |
By :
progamer2000 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ดูแล้ว ตารางมันผิด นะ code ที่ออกมา มี tag body html มาแทรก 3 รอบ - -"
|
|
|
|
|
Date :
2015-11-05 16:04:16 |
By :
progamer2000 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2015-11-05 17:20:03 |
By :
งานงอก |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้วคับ ใช้ } ผิดที่
|
|
|
|
|
Date :
2015-11-05 17:31:26 |
By :
งานงอก |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|