DEV Community

Cover image for Sparks Foundation Banking Project - Converted to Full-Stack Mode With PHP and MySQL
Souvik Roy
Souvik Roy

Posted on

Sparks Foundation Banking Project - Converted to Full-Stack Mode With PHP and MySQL

The Project that they had assigned was quite simple. As a good developer I did what they asked me to, however the researcher in me aroused the gig for more and I decided to convert this basic project into a complete full stack project with a login,signUp system and three admin panels. This project uses the traditional PHP and MySQL framework and the files to the can be downloaded along with the source code through the following link :
https://github.com/Souvik1406/The-Sparks-Foundation-Basic-Banking-System-Internship-Project

To Read more about the project go to my DevPost Portfolio : https://devpost.com/software/complete-banking-system-full-stack

Top comments (2)

Collapse
 
lito profile image
Lito

Remember to add an exit or die after every header('Location: XXX') because header do not stop script execution.

PHP header

You can add a simple helper to create redirects:

function redirect(string $url): void
{
    die(header('Location: '.$url));
}
Enter fullscreen mode Exit fullscreen mode
Collapse
 
souvik1406 profile image
Souvik Roy

Thanks man.... Just learning php and I'm really thankful for this precious advice😊