https://github.com/kents00/ustp-projects
https://github.com/kents00/ustp-projects
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/kents00/ustp-projects
- Owner: kents00
- License: gpl-3.0
- Created: 2024-09-06T07:03:37.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-23T11:48:33.000Z (11 months ago)
- Last Synced: 2025-06-18T03:11:53.549Z (4 months ago)
- Language: PHP
- Homepage:
- Size: 40 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# USTP Projects
Welcome to the **USTP Projects** repository! This repository contains a collection of academic projects and tools developed by students at the University of Science and Technology of Southern Philippines (USTP).
---
## 📁 Repository Contents
This repository includes the following projects:
1. **PHP Introduction**
- **Description**: Introduction of PHP.
- **Technologies Used**: PHP.
- **How to Run**: Download the PHP Server plugin to run this script.
- [Link to Project Folder](https://www.notion.so/Php-Introduction)
2. **Form Handling**
- **Description**: Using PHP w/ HTML
- **Technologies Used**: PHP.
- **How to Run**: Download the PHP Server plugin to run this script.
- [Link to Project Folder](https://www.notion.so/Form-Handling)
3. **Activities**
- **Description**: For Loop, While Loop, Do-While, Index Array, Associative Array.
- **Technologies Used**: PHP.
- **How to Run**: Download the PHP Server plugin to run this script.
- [Link to Project Folder](https://www.notion.so/Activities)
4. **Assignment**
- **Description**: Student Management (Login,Register,Dashboard).
- **Technologies Used**: PHP, Xampp.
- **How to Run**: Download and run Xampp to run this script.
- **Add this Database:**
```php
CREATE DATABASE student_management;
USE student_management;
-- Users table
CREATE TABLE users (
id INT AUTO_INCREMENT PRIMARY KEY,
username VARCHAR(50) UNIQUE NOT NULL,
password VARCHAR(255) NOT NULL
);
-- Students table
CREATE TABLE students (
id INT AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(100) NOT NULL,
email VARCHAR(100),
course VARCHAR(50)
);
```
- [Link to Project Folder](https://www.notion.so/Assignment)---
## 🚀 Getting Started
Follow these steps to get started with any project in this repository.
### Prerequisites
Make sure you have the following installed:
- **PHP 3.x.x** (Operating inside of the machine)
- **PHP Server** (Vscode Plugin)
- **XAMPP 8.2.12** ([Download Here](https://sourceforge.net/projects/xampp/files/))### Installation
1. Clone the repository:
```bash
git clone
cd USTP-Projects
```