|
|
|
การรับค่าจาก file ซึ่อเก็บ function อยู่ เมื่อเราทำการ include file myFunction.php เข้ามา |
|
|
|
|
|
|
|
เมื่อเราทำการ include file myFunction.php เข้ามา
Code (PHP)
function fnc_select_ms($field, $table, $condition)
{
$sql = "SELECT $field FROM $table $condition";
$objQuery = mssql_query($sql)or die("ผิดพลาด ".mysql_error());
return $objQuery;
}
จะให้ส่งค่ากลับไปแสดงผลอีกไฟร์นึง ต้องทำไงหรอครับ
ex.php
Code (PHP)
<?
include "myFunction.php";
$field = "$tablename3.ssn
,$tablename3.name
,substring(convert(char(8),$tablename2.checktime,112),7,2)
+substring(convert(char(8),$tablename2.checktime,112),5,2)
+substring(convert(char(8),$tablename2.checktime,112),1,4) as fdate
,$tablename2.checktime
,$tablename3.userid";
$table ="$tablename2
INNER JOIN $tablename3 ON $tablename2.userid = $tablename3.userid";
$condition ="where substring(convert(char(8),$tablename2.checktime,112),7,2)
+substring(convert(char(8),$tablename2.checktime,112),5,2)
+substring(convert(char(8),$tablename2.checktime,112),1,4) >= $date_fr
and
substring(convert(char(8),$tablename2.checktime,112),7,2)
+substring(convert(char(8),$tablename2.checktime,112),5,2)
+substring(convert(char(8),$tablename2.checktime,112),1,4)<=$date_ex";
fnc_select_ms($field, $table, $condition);
echo $objQuery;
?>
แบบนี้ป่าวครับ
แต่มันไม่มีอ่ะไรเลยอ่ะ
Tag : - - - -
|
|
|
|
|
|
Date :
2010-06-07 11:23:35 |
By :
poy213 |
View :
1079 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
สร้างตัวแปลมารับตอน
$x=fnc_select_ms($field, $table, $condition);
|
|
|
|
|
Date :
2010-06-07 11:39:40 |
By :
poy213 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อิอิ ถูกต้องนะคร๊าบ
|
|
|
|
|
Date :
2010-06-07 12:01:05 |
By :
jeabz |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|