POST と GET のすべての値をフィルタリングしてから、キーにちなんで名付けられた変数に入れたかったので、このコードを思いつきました。
foreach($_REQUEST as $key => $value){
$$key = mysql_real_escape_string(htmlspecialchars($value));
}
次に、関数内でこれらの変数を使用したいですか? どうやってやるの?
funciton get_all_posts(){
//return some information from the the new variable
return $username;
return $email;
//return what ever I want to return from POST/GET using the new variables
}
echo get_all_posts();