Dynamic $_REQUEST

A

Anonymous

Guest
Hi how could i make this work?

if($_REQUEST['\$field'] == ""){


Thanks!
 
You may have to be more specific, but I have a sneaking suspicion that this is what you really want:
PHP:
if($_REQUEST[$field] == ""){
 
Back
Top