I would like to use a form to pass variables to a php script.
<form name="form1" method="post" action="post.php">
<input name="DB_TBLName" type="text" value="audio_interface">
<input type="submit" name="post" value="post">
</form>
Should $DB_TBLName automatically be available in post.php when the form is submitted?
If so why isn’t it working?
Thanks