[quote:6b70bf7104="¹Ì½ºÅͱè"]¾È³çÇϼ¼¿ä...
¼îÇθô ¼Ò½º¸¦ º¸¸é
$aaa = $q->param("bbb");
À̺κÐÀÌ ³ª¿À´Âµ¥
¾î¶² ¿ªÇÒÀΰ¡¿ä?
´äº¯ ºÎŹµå¸³´Ï´Ù.
[/quote:6b70bf7104]
ÇØÇÇCGI ÀÔ´Ï´Ù.
¾Æ¸¶µµ ¹è¿¿¡ ³Ö´Â°Í °°Àºµ¥¿ä.
¾Æ·¡ »çÀÌÆ®³ª
http://www.php.net/manual/en/language.types.array.php
¾Æ·¡ ¹è¿¿¡ ´ëÇÑ ÇÔ¼ö¸¦ Âü°íÇϼ¼¿ä.
[ÇÁ·Î±×·¥ÄÚµå]$a = array( 1 => 'one', 2 => 'two', 3 => 'three' ); unset( $a[2] ); /* will produce an array that would have been defined as $a = array( 1=>'one', 3=>'three'); and NOT $a = array( 1 => 'one', 2 => 'three'); */ ?> |