[PHP-users 3363] Re: 変数名を変数で?
桝形 誠二
php-users@php.gr.jp
Tue, 06 Nov 2001 16:00:36 +0900
こんにちわ、桝形です。
> *****index.html内*****
> <input type="hidden" name="test1" value="AAA">
> <input type="hidden" name="test2" value="BBB">
> <input type="hidden" name="test3" value="CCC">
> ********************
>
> 上記3つの値を以下のindex.phpへPOSTします。
> そして、index.php内で上記test1, test2, test3の
> 数値の部分をループさせて、値を取りたいのです。
> *****index.php内*****
> <?php
> //やりたいイメージ
> for($i=0;$i<3;$i++){
> $tempArray = test$i;
> }
for($i=0;$i<3;$i++)
{
$tempArray[$i] = $HTTP_POST_VARS["test".$i];
}
とかでどうでしょうか?
_________________________
桝形 誠二( Masugata Seiji )
E-Mail : s.masugata@digicom.dnp.co.jp
 ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄