|
|
|
รบกวนด้วยครับ คือผม ลีสรายการมาโชว์ จากฐานข้อมมูลมาแต่ อยากให้กดลิ้งจาก หัวข้อหรือรูปแล้วลิ้งค์เข้า ในลีสของรายการ |
|
|
|
|
|
|
|
นี่เป็นไฟล์ ที่ผม ให้โชว์จากฐานข้อมูล ออกมา จะทำอย่างไร ให้กดแล้ว ลิ้งไปที่หัวข้อ หรือเฉพาะรายการที่โพส
ช่วยแนะนำ code ที่โชว์ เฉพาะ รายการได้มั้ยครับ หมายถึงเฉพาะกระทุ้หรือ แต่ละไอดี ครับ
ที่ลูกศรชี้ หมายถึง กดแล้ว ลิ้งค์ได้เลย ครับ ( คือใส่ลิ้งค์เป็น แต่ไม่รู้ว่าจะให้ลิ้งค์ไปไหน ครับ หมายถึงไปที่แต่ละไอดีครับ ต้องใส่ค่าตัวแปรอย่างไร ครับ??)
Code (PHP)
<?php require_once('********'); ?>
<?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;
}
}
$currentPage = $_SERVER["PHP_SELF"];
$maxRows_Recordset1 = 600;
$pageNum_Recordset1 = 0;
if (isset($_GET['pageNum_Recordset1'])) {
$pageNum_Recordset1 = $_GET['pageNum_Recordset1'];
}
$startRow_Recordset1 = $pageNum_Recordset1 * $maxRows_Recordset1;
mysql_select_db($database_myconn2, $myconn2);
$query_Recordset1 = "SELECT * FROM landlist";
$query_limit_Recordset1 = sprintf("%s LIMIT %d, %d", $query_Recordset1, $startRow_Recordset1, $maxRows_Recordset1);
$Recordset1 = mysql_query($query_limit_Recordset1, $myconn2) or die(mysql_error());
$row_Recordset1 = mysql_fetch_assoc($Recordset1);
if (isset($_GET['totalRows_Recordset1'])) {
$totalRows_Recordset1 = $_GET['totalRows_Recordset1'];
} else {
$all_Recordset1 = mysql_query($query_Recordset1);
$totalRows_Recordset1 = mysql_num_rows($all_Recordset1);
}
$totalPages_Recordset1 = ceil($totalRows_Recordset1/$maxRows_Recordset1)-1;
$queryString_Recordset1 = "";
if (!empty($_SERVER['QUERY_STRING'])) {
$params = explode("&", $_SERVER['QUERY_STRING']);
$newParams = array();
foreach ($params as $param) {
if (stristr($param, "pageNum_Recordset1") == false &&
stristr($param, "totalRows_Recordset1") == false) {
array_push($newParams, $param);
}
}
if (count($newParams) != 0) {
$queryString_Recordset1 = "&" . htmlentities(implode("&", $newParams));
}
}
$queryString_Recordset1 = sprintf("&totalRows_Recordset1=%d%s", $totalRows_Recordset1, $queryString_Recordset1);
?>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<title>ทำเลทอง</title>
<script type="application/javascript" src="js/iscroll-lite.js"></script>
<script type="text/javascript">
var myScroll;
function loaded() {
myScroll = new iScroll('wrapper');
}
document.addEventListener('touchmove', function (e) { e.preventDefault(); }, false);
document.addEventListener('DOMContentLoaded', loaded, false);
</script>
<style type="text/css" media="all">
body,ul,li {
padding:2;
margin:2;
}
body {
font-size:12px;
-webkit-user-select:none;
-webkit-text-size-adjust:none;
/* -webkit-box-sizing:border-box;*/
font-family:helvetica;
/* padding-bottom:45px; /* This prevents the scroller to lock if the user swipes down outside of the screen.
NOT needed if in home screen mode. */
}
#header {
position:absolute; z-index:2;
top:0; left:0;
width:100%;
height:45px;
line-height:45px;
background-image:-webkit-gradient(linear, 0 0, 0 100%, color-stop(0, #fe96c9), color-stop(0.05, #d51875), color-stop(1, #7b0a2e));
background-image:-moz-linear-gradient(top, #fe96c9, #d51875 5%, #7b0a2e);
background-image:-o-linear-gradient(top, #fe96c9, #d51875 5%, #7b0a2e);
padding:0;
color:#003366;
font-size:20px;
text-align:center;
}
#header a {
color:#f3f3f3;
text-decoration:none;
font-weight:bold;
text-shadow:0 -1px 0 rgba(0,0,0,0.5);
}
#wrapper {
position:absolute; z-index:1;
top:45px; bottom:0; left:0;
width:100%;
background:#CCCCFF;
overflow:auto;
}
#scroller {
width:2040px;
height:100%;
float:left;
padding:0;
overflow:auto;
}
#scroller ul {
list-style:none;
display:block;
float:left;
width:100%;
height:100%;
padding:0;
margin:2px;
text-align:left;
}
#scroller li {
display:block;
vertical-align: top;
float:left;
padding:0 4px;
margin-top: 4px;
width:200px;
height:40%;
border-left:1px solid #ccc;
border-right:1px solid #fff;
background-color:#CCFFFF;
font-size:14px;
}
</style>
</head>
<body>
<div id="header">
<form id="form1" name="form1" method="post" action="showsearch.php" style="float:none" >
<label for="mysearch">ค้นหาที่ดิน</label>
<input type="text" name="search" id="search" />
<input type="submit" name="btn" id="btn" value="ค้นหา" /> <a href="#">ghfghfgh</a><a href="#"> fghfghfggffff</a>
<a href="#">ff141441</a> <a href="#">f555ff</a><a href="#">ffffffff </a>
</form>
</div>
<div id="wrapper">
<div id="scroller">
<ul id="thelist"> <center>
<li>
<table border="0" cellpadding="1" cellspacing="3" width="95%" align="center" bgcolor="#99FFFF">
<?php do { ?>
<tr> <td><table align="center"> <tr>
<td>
<font color="#000080"> <?php echo $row_Recordset1['la_name']; ?> </font>
</td> </tr>
</table>
</td>
</tr>
<tr> <td> <table align="center"><tr>
<td>
ตารางวาละ : <?php echo $row_Recordset1['la_price']; ?> ฿
</td></tr>
</table> </td>
</tr>
<tr> <td> <table align="center">
<tr> <td> <img src="img/<?php echo $row_Recordset1['la_pic1']; ?>" width="100" height=" 100px" /></td>
</tr> </table> </td>
</tr>
</table>
</li>
<li>
<?php } while ($row_Recordset1 = mysql_fetch_assoc($Recordset1)); ?>
</li> </center>
</ul>
</div>
</div>
</body>
</html>
Tag : PHP, MySQL
|
ประวัติการแก้ไข 2016-03-31 08:38:38
|
|
|
|
|
Date :
2016-03-31 08:33:50 |
By :
kangpla111 |
View :
810 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
หน้าส่ง ID
Code (PHP)
<a href="link.php?id=<?php echo $rs["your_ID"];?>">Click</a>
หน้ารับค่า ID
Code (PHP)
<?php
$id = isset($_GET["id"]) ? $_GET["id"] : "";
echo $id;
?>
|
|
|
|
|
Date :
2016-03-31 08:53:45 |
By :
geidtiphong |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|