我的mysql数据库上有一个名为“wifi”的表和另一个名为“bluetooth”的表我有一个来自表单的$string如果字符串包含“wifi”我想将$tbl_name=设置为“wifi”,否则设置它到“蓝牙”然后将数据发送到适当的表我还没有找到任何例子,我做对了吗?是的,我是新人:)
我正在这样做:
$xplatform=$_POST['platform'];
echo "made_variables ok";
// Insert data into mysql
//ifstatement decides which table to insert into
if(preg_match('/wifi/',$xplatform))
{
$tbl_name='wifi';
}
else
{
$tbl_name='bluetooth';
};
$sql="INSERT INTO $tbl_name`(`field1`,`field2`,`f3`)
VALUES('$_POST[numberlat]','$_POST[numberlng]','$_POST[name]','$_POST[website]','$_POST
[message]','$_POST[radius]','$_POST[email]','$_POST[platform]')";
$result=mysql_query($sql);