I have a list box named select_country showing a list of countries.
All the country names come from a mysql database table named call_rate.
I also created a text field and a button in my form.
I have written the following code to show all country names in the list box:
CODE:
$conn = mysql_connect("localhost", "Administrator", 7216708)
or die(mysql_error());
mysql_select_db("test",$conn)
or die(mysql_error());
$get_country="select id,country_name,rate from call_rate";
$get_country_result= mysql_query($get_country) or die(mysql_error());
<table width=50% hight=90% cellpadding=10 cellspacing=0 border=1 align=center>
<tr>
<td>
<select name=\"select_country\">";
while($country_result= mysql_fetch_array($get_country_result))
{
$country_id=$country_result[id];
$country_name=$country_result[country_name];
$call_rate=$country_result[rate];
$display_block.="<option value=\"$country_id\">$country_name</option>";
}
$display_block.= "</select></td>";
$display_block.= "
<td><input type = \"text\" name=\"edit_rate\" size=10></td>
<td><input type = \"submit\" name = \"submit\" value=\"Update\"></td>
<input type = \"hidden\" name = \"op\" value = \"edit\">
</tr>
</table>";
And finally I printed the $display_block string.
What I am trying to do is whenever I will select a country name from the list the associated call rate will be displayed in the text field. (‘rate’- field name in database).
And when after any change in rate when I will click the button the new rate will replace the old rate in the database.
Please help me in writing the code for doing this!!!