与服务器同步数据

时间:2009-11-28 11:42:16

标签: iphone

我正在尝试将应用程序中的数据同步到服务器上。我非常 这种工作的新手。 为此,我在php中写了一个小型的Web服务,

现在,我无法弄清楚如何调用此Web服务以及如何调用 从应用程序将2个变量值发送到insertData函数 使用xCode。

对此有任何帮助都将不胜感激。

谢谢&问候, NR

1 个答案:

答案 0 :(得分:1)

如果我不需要,我不会通过php或http同步数据。我会使用简单的内容,例如scprsync,或者,如果数据与我的应用程序有关,则需要一些版本控制,例如git

但是,通过php执行此操作可能看起来像这样:

<!-- server side, lets say the url is http://example.org/sync.php -->
<?php 
    insert_stuff($_GET["username"], $_GET["password"]); 
    echo "Inserted.\n";
?>

在本地,我会使用curl

$ curl "http://example.org/sync.php?username=root&password=root"
Inserted.

...