|
|
|
เกี่ยวกับ PHP ว่าตอนเรียกข้อมูลมาโชว์เราสามารถ ลบข้อมูล5ตัวแรกออกตอนโชว์ได้หรือไม่ |
|
|
|
|
|
|
|
str_replace() ก็ได้ครับ
|
|
|
|
|
Date :
2011-11-22 14:34:03 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอโทษนะครับ รบกวนอีกที ผมต้องไส่ตรงไหนครับ ข้อมูลฟิลด์ link_web ตัด http:// ออกครับ
Code (PHP)
<?php require_once('../Connections/manage_data_map.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;
}
}
mysql_select_db($database_manage_data_map, $manage_data_map);
$query_rs_report = "SELECT id_mk, name_mk, link_web FROM markers ORDER BY id_mk ASC";
$rs_report = mysql_query($query_rs_report, $manage_data_map) or die(mysql_error());
$row_rs_report = mysql_fetch_assoc($rs_report);
$totalRows_rs_report = mysql_num_rows($rs_report);
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html><!-- InstanceBegin template="/Templates/admin_page2.dwt.php" codeOutsideHTMLIsLocked="false" -->
<head>
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
<!-- InstanceBeginEditable name="doctitle" -->
<title>reportPDF</title>
<!-- InstanceEndEditable -->
<LINK REL=StyleSheet HREF="../style1.css" TYPE="text/css" MEDIA=screen>
<style type="text/css">
<!--
.style10 {font-size: 14px; font-family: "MS Sans Serif"; }
.style13 {font-family: "MS Sans Serif"}
.style14 {color: #000000}
.style15 {font-size: 16px}
a:link {
color: #00F;
}
-->
</style>
<!-- InstanceBeginEditable name="head" -->
<style type="text/css">
body,td,th {
font-family: "Microsoft Sans Serif";
}
</style>
<!-- InstanceEndEditable -->
</head>
<body>
<div id="page">
<div id="header">
<h1> </h1>
</div>
<div id="menulinks">
<a href="../admin_page.php" class="style13">หน้าหลัก</a>
<h1>
<a href="showmap_admin.php" class="style13">ข้อมูลแผนที่</a>
<a href="show_data_map_admin.php" class="style13">ข้อมูลสถานที่</a>
<a href="../admin/manage_data_map.php" class="style10 style15">จัดการข้อมูลสถานที่</a> <a href="../admin/manage_web.php" class="style10 style15">จัดการข้อมูลเว็บ</a> <a href="report_datamap_pdf.php" class="style13">report</a> <a href="../admin/admin_sendmail.php" class="style13">ส่งข่าวสาร</a> <a href="../webboard/question_view.php" target="_blank" class="style13">เว็บบอร์ด</a> <a href="#" class="style13">คู่มือการใช้</a></h1>
</div>
<div id="mainarea">
<div id="main"><!-- InstanceBeginEditable name="EditRegion3" -->
<table border="1">
<tr>
<td>ID</td>
<td>ชื่อสถานที่</td>
<td>ลิ้งค์ที่เกี่ยวข้อง</td>
<td>ออกรายงาน</td>
</tr>
<?php do { ?>
<tr>
<td><?php echo $row_rs_report['id_mk']; ?></td>
<td><?php echo $row_rs_report['name_mk']; ?></td>
<td><?php echo $row_rs_report['link_web']; ?></td>
<td><a href="../html2pdf/html2pdf.php?id_mk=<?php echo $row_rs_report['id_mk']; ?>" target="_blank"><font color="#0000FF">report</font></a></td>
</tr>
<?php } while ($row_rs_report = mysql_fetch_assoc($rs_report)); ?>
</table>
<!-- InstanceEndEditable --></div>
</div>
<div id="footer"></div>
</div>
</body>
<!-- InstanceEnd --></html>
<?php
mysql_free_result($rs_report);
?>
|
|
|
|
|
Date :
2011-11-23 10:44:17 |
By :
siwarin125 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
echo str_replace("http://","",$row_rs_report['link_web']);
ใช้ function ของพี่วินอ่ะ
แต่ถ้าเป็นแบบของ คุณ grandraftz ก็แบบนี้ครับ
Code (PHP)
echo substr($row_rs_report['link_web'],7);
|
ประวัติการแก้ไข 2011-11-23 11:06:00
|
|
|
|
Date :
2011-11-23 11:00:54 |
By :
aimoomoo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ พี่วิน พี่ grandraftz และพี่ ลูกเป็ดขี้เหล่
|
|
|
|
|
Date :
2011-11-24 10:45:48 |
By :
siwarin125 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
พี่ครับแล้วถ้าใน Fpdf ละครับ ต้องเขียนโค๊ดอย่างไร ให้ไม่มี http://
Code (PHP)
$pdf->Image('http://qrcode.kaywa.com/code/10FF0000/'. $arr['link_web'],115,88,50,0,'PNG');
|
|
|
|
|
Date :
2011-11-24 11:07:05 |
By :
siwarin125 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตรงฟิลด์ . $arr['link_web'] นะครับไม่ไช้ลิ้งค์ที่ใช้สร้างภาพ QR
|
|
|
|
|
Date :
2011-11-24 15:28:12 |
By :
siwarin125 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|