 |
|
$dir="../";
include("conf.phtml");
// 2006/1/24 Ryouhei Katayama
// 画像拾ってくるスクリプト
$sql = "select
*
from
headline_news
where
head_exclude = '1' and
head_startdate < now() and
head_enddate > now() and
head_center = '$center' and
head_service = 'item' and
head_id = '$head_id'
order by
head_date desc , head_id desc
limit 1";
$conn = db_connect();
$result = db_query($conn,$sql);
$recordCount = db_num_rows($result);
if($recordCount){
$head_id = mysql_result_sjis( $result, 0,"head_id");
$head_title = mysql_result_sjis( $result, 0,"head_title");
$head_desc = mysql_result_sjis( $result, 0,"head_desc");
$head_read = mysql_result_sjis( $result, 0,"head_read");
$head_func1 = mysql_result_sjis( $result, 0,"head_func1");
$head_func2 = mysql_result_sjis( $result, 0,"head_func2");
}
?>
|
|
 |