Notes-Web-application
This is a notes web application made with the help of PHP. You can use this application in the few simple steps:
- Make a pull request of all the files from this repository.
- Start your apache server and my sql database.
- Make two new databases there one named users and other named notes.
- In the notes database make a table named notes that has 4 columns, that is sno (int), title (varchar), description (text) and tstamp(timestamp).
- In the users database make a table named users and insert 8 columns into it that is sno (int), name (varchar), location (varchar), phone (int), email (varchar), username (varchar), password (varchar) and dt (datetime).
- Make sure to enable auto increment in sno which will make it a primary key.
- Also choose the size of password to be 256 or above for the application to function properly.
- In case you change the directory do make necessary changes in the location of form methods. GIVE FULL LOCATION of the files or it wont function as desired.
And there you are all set to go.