问问题
64 次
4 回答
0
像这样的东西member.php
:
if($_POST['phone_type']=='escene'){
import 'escene_handler.php'; // run this if they selected 'escene'
}else if($_POST['phone_type']=='grandstream'){
import 'grandstream_handler.php'; // run this if they selected 'grandstream'
}
提交表单时会调用它。
于 2013-11-14T19:35:21.387 回答
0
我认为 AJax 是解决这个问题的最佳方案。
于 2013-11-14T19:35:40.947 回答
0
您可以使用简单的switch
语句:
if (!empty($_POST)) {
switch ($_POST['phone_type']) {
case 'escene':
// run your code when 'escene' is selected
break;
case 'grandstream':
// run your code when 'grandstream' is selected
break;
default:
// run default code, when non of the above is selected, or ignore
}
}
于 2013-11-14T19:36:40.267 回答
0
<?php if(isset($_POST['YourDropDownName']) && $_POST['YourDropDownName'] == "Option1Value")
{
//do stuff here...
}
else if(isset($_POST['YourDropDownName']) && $_POST['YourDropDownName'] == "Option2Value")
{
//do other stuff here...
}?>`
这可以工作。
于 2013-11-14T19:38:57.400 回答