Skip to content

Commit 32d64d0

Browse files
author
RamRajuE
committed
feature(EJ2-67755): Scheduler CRUD integration in PHP
1 parent a86321c commit 32d64d0

File tree

2 files changed

+22
-2
lines changed

2 files changed

+22
-2
lines changed

README.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,21 @@
1-
# Javascript-Scheduler-CRUD-PHP-and-MySQL
1+
# Javascript-Scheduler-CRUD-PHP-and-MySQL
2+
Syncfusion Scheduler CRUD Application with PHP and MySQL database.
3+
4+
## Prerequisites
5+
- [MySQL](https://www.mysql.com/)
6+
- [WAMPSERVER](https://www.wampserver.com/en/)
7+
8+
## MySQL Configuration
9+
10+
- In `server.php` file update the USER Name, PASSWORD, and DataBase as per the database configuration.
11+
- In your Database create a table with the necessary fields
12+
- The SQL query required for creating the necessary table is being located in the `scheduledb.sql` file within the DB folder.
13+
14+
## Start Wamp Server
15+
16+
- Please proceed with the download and installation of the WAMP server on your system.
17+
- After the successful installation of the WAMP server, kindly launch the application and start all services
18+
- Please copy the `Javascript-Scheduler-CRUD-PHP-and-MySQL` repository and place it in the WAMP server's root directory, specifically at `C:\wamp64\www`.
19+
- Upon completion, kindly launch a web browser and navigate to `localhost`, you will be able to access our application under the `Your Projects` section.
20+
- Next, please navigate to `localhost/Javascript-Scheduler-CRUD-PHP-and-MySQL` in your web browser. You will now be able to access the running Syncfusion scheduler application.
21+
- Now you can perform the `CRUD` operations, and it will be reflected on MySQL Database.

server.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
$servername = "localhost";
33
$username = "root";
4-
$password = "Ram@09121997";
4+
$password = "Sync@09121997";
55
$dbname = "syncfusion";
66

77
$conn = new mysqli($servername, $username, $password, $dbname);

0 commit comments

Comments
 (0)