How to develop mini website for college management system with PHP, MySQL?

I want to to develop mini website for college management system in html with php MySQL how can i proceed it . please help me mam.

How can develop that college management system with responsive behavior. 


Replies

  • Kaustubh Katdare
    Kaustubh Katdare

    In order to develop a college management system, you will need to know PHP, HTML and CSS; with bit of jQuery. How comfortable are you with these languages? 

    Also, it's not clear whether you'll need MySQL. It depends upon the overall features set of your website. 

    Can you tell us top 5 features of your website so that we can help you make a website? 

    PS: Also - please let us know if you want to develop this step by step or are looking for ready-made code?

  • Veena Naik
    Veena Naik

    thank you sir i need a step by step instruction i need connect frontend with backend database actually i sarted my work with login page registration page and home page.i need how shold be view of homepage reply me  

  • Kaustubh Katdare
    Kaustubh Katdare

    #-Link-Snipped-# - I'll recommend using a framework instead of writing plain PHP. A framework will solve lot of these common problems out of the box so that you don't have to write the code over and over. 

    My personal favorite is Laravel; but you can use any other framework you wish. 

    If you want to start, here's what you should do -

    1. Install XAMM on your Windows machine and start servers
    2. In your database, create the tables that you wish to have. For login, you will need 'users' database.
    3. In order to create login mechanism, you will need a simple database connection from php. You can do it via "mysqli" method in PHP. The code would be - $connection = new mysqli('localhost', 'username', 'password'). Be sure to replace 'username' and 'password' with the actual username and password set for your database. 
    4. Check for $connection->connect_error to see if the connection was successful.
    5. Once the connection is successful, PHP can now talk to your database.
    6. Now you need to write a function/method to accept username and password from the front end and then check if they exist in the database. If they do, you could login the user.

    However, if you use a framework like Laravel, all you will need to do is type your database name, username and password in the config file and run simple authentication commands at the prompt. It'd be too much work to actually write the login functionality again when it has been written so many times already.

    Spend some time learning Laravel (or any other framework) and you'll be able to develop your project in just few days; compared to several weeks. 

    I hope this helps. If you need more help; ask away! All the best!

You are reading an archived discussion.

Related Posts

Georgia Tech has released a report that lays out a plan for data interoperability in IoT apps for smart-building.https://www.machinedesign.com/industrial-automation/free-report-details-iot-data-standards-smart-buildings?Issue=MACD-001_20181001_MACD-001_680&sfvc4enews=42&cl=article_2_b&utm_rid=CPG05000000559845&utm_campaign=20282&utm_medium=email&elq2=5d0fbb3674bc49a2932840329017ae5b
how to get numbers that are not perfect squares or perfect cube or perfect fifth
The project enable users to enter personal details and login required passwords,able to solve community based problems
Google's got an awesome text adventure game hidden right inside the Chrome browser. Here's how to play it -Search "Text Adventure" in Google search.Now open the Developer Console. It's easy...