'.$name.''; } } //************************************** // First selection results // //************************************** if($_GET['func'] == "drop_1" && isset($_GET['func'])) { drop_1($_GET['drop_var']); } function drop_1($drop_var) { include_once('config.php'); $result = mysql_query("select * from recharge_plan where service_pro_id ='$drop_var' ") or die(mysql_error()); echo '
'; echo "
"; } //************************************** // Second selection results // //************************************** if($_GET['func'] == "drop_2" && isset($_GET['func'])) { drop_2($_GET['drop_var']); } function drop_2($drop_var) { include_once('config.php'); $result = mysql_query("SELECT * FROM recharge_plan WHERE plan_id='$drop_var'") or die(mysql_error()); while($drop_3 = mysql_fetch_array( $result )) { $service_amount = $drop_3['service_amount']; } echo '





'; } ?>