M-V-C 値の転送の問題について質問する
コントローラー コード:
$categlist=$this->Normal_product($cid=0,$ishot=0,$cout=8);
Tpl::output( 'index_cate_goods',$categlist);
コード
を表示 ($i=0;$i<5;$i )
{
foreach($output['index_cate_goods'] as $sry=>$t)
{
ここで $categlist に 3 つのパラメータを渡す必要があります $i が最初のパラメータ
}
}
?>
-----解決策---------------------------- ----
*.php ファイルを作成し、そのファイルに貼り付けます
/*
* mysql データベース DB クラス
* @package db
* @author yytcpt(無影)
* @version 2008-03-27
* @copyrigth http://www.d5s.cn/
*/
class DB {
var $connection_id = "";
var $pconnect = 0;
var $shutdown_queries = array();
var $queries = array();
var $query_id = "";
var $query_count = 0;
var $record_row = array();
var $failed = 0;
var $halt = "";
var $query_log = array();
function connect($ DBConfig){
if ($this->pconnect){
$this->connection_id = mysql_pconnect($DBConfig["hostname"], $DBConfig ["ユーザー名"], $DBConfig[ "パスワード"]);
}else{
$this->connection_id = mysql_connect($DBConfig["ホスト名"], $DBConfig["ユーザー名"], $ DBConfig["パスワード"]);
}
if ( !$this->connection_id ){
$this->halt("MySQL Server に接続できません");
}
if ( [email protected]_select_db($DBConfig["database"], $this->connection_id) ){
$this->halt("MySQL データベースに接続できません" );
}
if ($DBConfig["charset"]) {
@mysql_unbuffered_query("SET NAMES '".$DBConfig["charset"]."'");
@mysql_query("SET NAMES '" .$DBConfig["charset"]."'");
}
return true;
}
// SQL クエリを送信して結果セットを返す
関数 query($query_id, $query_type='mysql_query'){
$this->query_id = $query_type($query_id, $this->connection_id);
$this->queries [] = $query_id;
if (! $this->query_id ) {
$this->halt("クエリが失敗しました: n$query_id");
}
$this->query_count ;
//$this->query_log[] = $str;
return $this->query_id;
}
//SQL クエリを送信結果の行を取得してキャッシュせずに
function query_unbuffered($sql=""){
return $this->query($sql, 'mysql_unbuffered_query');
}
//Get a結果セットの行を連想配列として取得します
function fetch_array($sql = ""){
if ($sql == "") $sql = $this->query_id;
$this- >record_row = @mysql_fetch_array($sql, MYSQL_ASSOC);
return $this->record_row;
}
function shutdown_query($query_id = ""){
$this- >shutdown_queries[] = $query_id;
}
// INSERT、UPDATE、または DELETE の場合のみ、結果セット内の行数を取得します
functionaffected_rows() {
return @mysql_affected_rows($this->connection_id);
}
//結果セット内の行数を取得します。SELECT ステートメントでのみ有効です
function num_rows($query_id="") {
if ($query_id == "") $query_id = $this- >query_id;
return @mysql_num_rows($query_id);
}
//エラーメッセージの数値コードを以前の MySQL 操作
function get_errno(){
$this->errno = @mysql_errno($this->connection_id);
return $this->errno;
}
//前の INSERT 操作によって生成された ID を取得します
function insert_id() {
return @mysql_insert_id($this->connection_id);
}
function last_insert_id1($table) {
$q = 'SELECT LAST_INSERT_ID() FROM `'.$table .'`';
return mysql_num_rows(mysql_query($q));
}
function last_insert_id($表){
$q = 'SELECT LAST_INSERT_ID() AS `LASTID` FROM `'.$table.'`';
$tmpArr = mysql_fetch_assoc(mysql_query($q));
return (int)$tmpArr['LASTID '];
}
//クエリ数を取得します
function query_count(){
return $this->query_count;
}
//クエリを解放します結果メモリ
function free_result($query_id=""){
if ($query_id == "") $query_id = $this->query_id;
@mysql_free_result($query_id);
}
//MySQL 接続を閉じます
function close_db(){
if ( $this->connection_id ) return @mysql_close( $this->connection_id );
}
// 結果セットから列情報を取得してオブジェクトとして返し、すべてのフィールドを取得します
function get_result_fields($query_id=""){
if ($query_id == "") $query_id = $ this->query_id;
while ($field = mysql_fetch_field($query_id)) {
$fields[] = $field;
}
return $fields;
}
//MySQL データベースのリストを表示します Table
function halt($the_error=""){
$message = $the_error."
rn";
$message.= $this-> ;get_errno() . "
rn";
if (DEBUG==true){
echo "