Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/codergogoi/web_api_for_android_and_ios
Web service example for mobile apps using php
https://github.com/codergogoi/web_api_for_android_and_ios
Last synced: about 7 hours ago
JSON representation
Web service example for mobile apps using php
- Host: GitHub
- URL: https://github.com/codergogoi/web_api_for_android_and_ios
- Owner: codergogoi
- Created: 2015-08-25T06:45:21.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-08-25T07:22:27.000Z (about 9 years ago)
- Last Synced: 2024-04-20T15:08:56.927Z (7 months ago)
- Language: PHP
- Size: 125 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Web_api_for_Android_and_iOS
Web service example for mobile apps using phprequired Specification :
Basic PHP and SQL knowledge.
MAMP or XAMP or Wamp application for run in localhostOnce any of the above application installed.
Just Create Database " my_apps"
CREATE TABLE IF NOT EXISTS `app_user` (
`sl` int(11) NOT NULL,
`user_email` varchar(200) NOT NULL,
`user_password` varchar(200) NOT NULL,
`reg_date` date NOT NULL
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=latin1;--
-- Indexes for table `app_user`
--
ALTER TABLE `app_user`
ADD PRIMARY KEY (`sl`);--
-- AUTO_INCREMENT for table `app_user`
--
ALTER TABLE `app_user`
MODIFY `sl` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=0;
Create a Database User named : demox and password demox123 and grant newly created "my_apps" database access on it.Place the API files inside the WAMP/XAMP/MAMP httpdocs folder and run it.
Thank you