Kalimba is correct. There is no reason for a SQL database.
However, I use SQL databases for my high score systems.
This is how it is done. On some kind of web server, make a php file that uses $_GET to get information from the URL (The data you want). The iPhone can do a simple HTTP request with the variables in the URL. The PHP file can see what information it needs and echo the information to the page. The iPhone can parse this information into each individual strings.
EXAMPLE:
URL: www.example.com/example.php?x=1$y=example
PHP RETURN: 1:example
Use the iPhone to get that string then split the string into a array with the information. You can get the information in the string by stopping at the : character and keep going until the string stops.
|