https://github.com/vaneeza-7/server-side-code-for-mentorme-android-app-with-restful-api
Server side code for mentor me android app in php 🐘
https://github.com/vaneeza-7/server-side-code-for-mentorme-android-app-with-restful-api
android mysql php phpmyadmin xampp
Last synced: 7 months ago
JSON representation
Server side code for mentor me android app in php 🐘
- Host: GitHub
- URL: https://github.com/vaneeza-7/server-side-code-for-mentorme-android-app-with-restful-api
- Owner: Vaneeza-7
- License: mit
- Created: 2024-04-28T09:19:06.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-06-12T20:09:04.000Z (over 1 year ago)
- Last Synced: 2025-01-07T15:44:33.463Z (9 months ago)
- Topics: android, mysql, php, phpmyadmin, xampp
- Language: PHP
- Homepage:
- Size: 3.17 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MentorMe Server-Side Code
This repository contains the server-side code for the MentorMe Android app with RESTful APIs.
## Setup Instructions
### Clone the Repository
```bash
git clone https://github.com/Vaneeza-7/Server-Side-Code-for-mentorme-android-app-with-restful-api.git
```### Install Dependencies
Ensure you have the XAMPP server with MySQL installed.
### Set Up the Project
1. **Move Project Folder:**
Move the `mentorme` folder from the cloned repository to the `htdocs` folder in your XAMPP installation directory. The typical path is:
```
C:\xampp\htdocs
```2. **Start XAMPP:**
Open the XAMPP Control Panel and start the Apache and MySQL modules.
3. **Set Up the Database:**
- Open your web browser and go to `http://localhost/phpmyadmin`.
- Create a new database named `mentorme`.
- The schema file is not provided here but you can easily figure it out from the php files and set up the tables.
(sorry for inconvenience)4. **Configure Database Connection:**
- Open the `dbconfig.php` file located inside the `mentorme` folder.
- Update the database connection settings (hostname, username, password, database name) to match your MySQL configuration:
```php
```### Access the Application
Once the setup is complete, you can access the application by navigating to:
```
http://localhost/mentorme
```For additional information, please refer to the [main app repository.](https://github.com/Vaneeza-7/Mentor-me-android-app-with-RESTful-APIs).