Hi,
I have a site created using PHP and hosted by an Apache server, can we retrieve any data from the site/database without the use of a web browser?
I plan to get a couple of strings from the site/database (ex. # of visitors) through a mobile application that uses GPRS. Is it possible?
This may be a stupid question..
Moderator: General Moderators
- JAB Creations
- DevNet Resident
- Posts: 2341
- Joined: Thu Jan 13, 2005 6:44 pm
- Location: Sarasota Florida
- Contact:
Re: This may be a stupid question..
Browsers are (mostly) built specifically to surf the web part of the internet, there are other parts besides the web. 
Re: This may be a stupid question..
Thanks for the reply. Do you have any links that can help me understand developing applications for those other parts besides the web?JAB Creations wrote:Browsers are (mostly) built specifically to surf the web part of the internet, there are other parts besides the web.
-
alex.barylski
- DevNet Evangelist
- Posts: 6267
- Joined: Tue Dec 21, 2004 5:00 pm
- Location: Winnipeg
Re: This may be a stupid question..
Like an application on a blackberry? You would probably still end up using the 'web' -- probably HTTP only you'd make it directly rather than through a web browser -- because the data feed would probably be XML not HTML which would allow you to render the results in anyway you found fit.I plan to get a couple of strings from the site/database (ex. # of visitors) through a mobile application that uses GPRS. Is it possible?
Links? How about steps as I have no idea what handheld device your using (iPhone, BB, etc)
1. Learn about the API made available to you by your handheld manufacturer.
2. Build the server application and query the server for the results
3. Generate the result display on your handheld
Unless I am missing something...this is where I would start