i have installed php 4.3.2 and apache 2.0.45. everything seems ok, except that when i pass name elements from a html file to a php file, the variable has no value. any ideas?
html:
<form name="index" action="action.php" method="post">
<select name="freq">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
<input type="submit" value="Submit">
</form>
php:
<?php
print("value is $freq"
?>
wazilian
King of Wazil
html:
<form name="index" action="action.php" method="post">
<select name="freq">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
<input type="submit" value="Submit">
</form>
php:
<?php
print("value is $freq"
?>
wazilian
King of Wazil