我尝试在Xcode中创建一个注册表单。我将信息存储在我的mysql数据库中。但是当我在Xcode中将值发送到URL时,php脚本只能获得第一个。我在Xcode中没有语法错误,但我仍然不确定它是否正确。如果你能在下面的代码中发现错误,我很乐意听到你的意见。
Xcode中:
NSString *strURL = [NSString stringWithFormat:@"http://localhost/login/index.php?email=%@",email.text, "&username=%@", username.text];
我的PHP代码:
<?php
$email = $_GET['email'];
$username = $_GET['username'];
$sql = "INSERT INTO users (email, username) VALUES ('$email', '$username')";
$qry = mysql_query($sql);
?>
感谢您的时间。
答案 0 :(得分:3)
尝试:
NSString *strURL = [NSString stringWithFormat:@"http://localhost/login/index.php?email=%@&username=%@",email.text, username.text];