[PHP-users 1557] 処理分岐で他のphpで処理する
php-users@php.gr.jp
php-users@php.gr.jp
Mon, 27 Aug 2001 21:59:22 +0900
お世話になります。まこ@はままつです。
php内で処理分岐を行って他のphpで分岐先の処理を行いたいのですが
他のphpにどうやって渡していいのか分かりません。どなたかお教え願いません
か。宜しくお願いします。
-a.php----
$result = pg_exec("select * from keyword_tbl where keyword_cd = '$
target'");
if ($result == false):
// DisplayErrMsg(sprintf("内部エラー %d:%s\n",
// pg_errormessage()));
exit();
endif;
//ボタンによる処理分岐
if(isset($item_mokuteki)):
echo ("商品で探す");
//ここで行う処理をb.phpで行いたい
elseif (isset($seibun_mokuteki)):
echo ("成分で探す");
endif;
?>
--b.php--
<?php
$j = 0 ;
while(@$row = pg_fetch_array($result,$j)) {
$result1 = pg_exec("select * from item_tbl where cd = 'row[cd]'");
}
?>