<?php
$var = "tax_" . $taxkey;
if(isset($_POST[$var])) echo $var . "SET";
?>
I need to check wheter a "dynamic" POST value is set or not, is this possible in PHP?
EDIT: sorry guys, this has been solved!
<?php
$var = "tax_" . $taxkey;
if(isset($_POST[$var])) echo $var . "SET";
?>
I need to check wheter a "dynamic" POST value is set or not, is this possible in PHP?
EDIT: sorry guys, this has been solved!