我想在提交表单后集成 ang 短信通知,在发送短信后我想将其重定向到我的thankyou.html 网页,这是我的代码:
<?php
if(isset($_POST['send'])){
$query="insert into table() values() ";
if(mysql_query($query)){
header("location:http://api.clickatell.com/http/sendmsg?api_id=3549342&user=xxxx&password=xxxx&to=63926475xxxx&text=xxxx ");
}
}
?>
<form method=post >
Username: input type=text name=user >
Password: <input type=text name=pass >
Name: <input type=text name=name >
Mobile number: <input type=text name=mobile_no >
<input type=submit name=submit >
</form>
假设查询返回true,它将使用clickatell api发送短信,我想要的是如果消息成功,我希望它重定向到我的.html页面上显示“谢谢”。
我是这个api的新手,谢谢!