Skip to content

jaredible/CS4610-Project-1

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

87 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation


Logo

University Portal

A PHP CRUD interface!
Explore the docs »

View Demo · Report Bug · Request Feature

Table of Contents

About The Project

University Portal

Built With

Getting Started

These are instructions of how you may set up your project locally. To get a local copy up and running follow these simple steps.

Prerequisites

  • PHP 5.6+
  • MySQL 8.0+
  • XAMPP 5.6+

Installation

  1. Navigate into your htdocs directory
  2. Clone the repo
git clone https://github.com/jaredible/CS4610-Project-1.git
  1. Open phpMyAdmin and run the database.sql script
  2. Enter your database configuration in config.php
$config = array(
    'db' => array(
        'host' => 'localhost',
        'user' => 'ENTER YOUR USERNAME',
        'pass' => 'ENTER YOUR PASSWORD',
        'name' => 'university'
    )
);

Usage

  • In your browser, you will need to navigate to localhost/CS4610-Project-1/public to view the project.
  • To login, use the same database username and password.

Contributing

Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/<feature-name>)
  3. Commit your Changes (git commit -m 'Added <feature-name>')
  4. Push to the Branch (git push origin feature/<feature-name>)
  5. Open a Pull Request

Acknowledgements

Contact

Jared Diehl - @jaredmdiehl - jared@jaredible.net

Project Link: https://github.com/jaredible/CS4610-Project-1