https://github.com/danialjivraj/php-cv-website
a php website that displays cvs from all registered users and allows users to update their information
https://github.com/danialjivraj/php-cv-website
cv-website danialjivraj php php-website sql-database
Last synced: 10 months ago
JSON representation
a php website that displays cvs from all registered users and allows users to update their information
- Host: GitHub
- URL: https://github.com/danialjivraj/php-cv-website
- Owner: danialjivraj
- Created: 2023-07-19T12:56:08.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-28T21:46:49.000Z (almost 2 years ago)
- Last Synced: 2025-02-15T03:24:49.514Z (12 months ago)
- Topics: cv-website, danialjivraj, php, php-website, sql-database
- Language: PHP
- Homepage:
- Size: 142 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# php-cv-website
This project is built using PHP and features a home page that showcases a list of all CVs available on the website.
Non-users can perform the following actions:
- Register
- Go to Log in page
- Check the CVs displayed in the Home page
- Press on More Details for a particular profile
In addition to the above, registered users can:
- Check and update their profiles
- Log out
## Run the Website
You can run the website through [XAMPP](https://www.apachefriends.org/).
Populate the localhost database with the following:
```
CREATE TABLE cvs (
id INT AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(50) NOT NULL,
email VARCHAR(100) NOT NULL,
password VARCHAR(255) NOT NULL,
keyprogramming VARCHAR(100) NOT NULL,
profile TEXT NOT NULL,
education TEXT NOT NULL,
URLlinks VARCHAR(255) NOT NULL
);
```
## Preview
Home Page

Register

More Details

Profile
