This web-based Student Registration System simplifies enrollment with HTML, CSS, JavaScript, PHP, and MySQL. It offers form validation, secure data storage, ensuring efficiency for students and administrators.
When you are using the project please change the databaseConnect.php file by updating your info at "your-password" and "your-database-name".
1️⃣ Create a Repository: Create a repository into your github manually by adding a new repository.
2️⃣ Create a New Folder in Vscode:
mkdir my-repo
cd my-repo
3️⃣ Initialize Your New Repository: initialize the folder as git repo
git init
4️⃣ Add origin : add my repo as origin so that you can pull all files and folders to your local machine later
git remote add origin https://github.com/<my-username>/<project-name>.git
5️⃣ Track the remote: you can check from where we will pull and push
git remote -v
6️⃣ Pull all the Contents: get all the files and folders from my repo main branch to your local
git pull origin main
7️⃣ Add new remote: adding new remote new-origin, so that we can push all the folders and files from your local to your remote repo which you created
git remote add new-origin https://github.com/<your-username>/<your-project-name>.git
8️⃣ Push your local changes: push your local changes to remote new-origin
git push new-origin --all