Skip to content

a php website that displays cvs from all registered users and allows users to update their information

Notifications You must be signed in to change notification settings

danialjivraj/php-cv-website

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 

Repository files navigation

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.

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 image Register image More Details image Profile image

About

a php website that displays cvs from all registered users and allows users to update their information

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published