0
我已經收到此錯誤:一個PHP錯誤遇到笨
A PHP Error was encountered Severity: Warning Message: strip_tags() expects parameter 1 to be string, array given Filename: inscription/loginform3.php Line Number: 19
這裏是代碼:
echo form_open_multipart('user/register_step_3');
// Loop through the POST variables passed from the previous page
foreach ($_POST as $key => $value){
$value = htmlentities(stripslashes(strip_tags($value)));
echo form_hidden($key, $value);
}
和線路19的代碼:
$value = htmlentities(stripslashes(strip_tags($value)));
請幫我與這個問題。
您可以將print_r($ value)粘貼到此處嗎? –
'$ value'是一個數組,它可能有另一個元素,比如'$ value [0]' – 2013-07-25 01:14:49
你看過CodeIgniter的[input class](http://ellislab.com/codeigniter/user-guide/libraries/ input.html)和'$ this-> input-> post'? – jleft