Xcode将多个参数发送到url

时间:2012-03-15 07:31:20

标签: php iphone xcode xcode4

我尝试在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);
?>

感谢您的时间。

1 个答案:

答案 0 :(得分:3)

尝试:

NSString *strURL = [NSString stringWithFormat:@"http://localhost/login/index.php?email=%@&username=%@",email.text, username.text];