Basic php stuff Check out a collection of php articles on basic stuff that we must know when we deal with php.
PHP AND MYSQL Posts
Basic php stuff Check out a collection of php articles on basic stuff that we must know when we deal with php.
Coding a registration system with email verification using php and mysql In this article we are going to create a complete secure registration system. That means that we are gonna have a register page, an email verification page, where we are going to send a 6 digits code to the user to verify his email, a login page, a forgot password page, where the user will fill his email and we are going to send him a new password. And an account page where we redirect the user when he successfully log's in. Posted: 16-Mar-2023 | PHP and MYSQL | Views 1602
How to create a simple php and mysql pagination Hi everyone, let's create a simple pagination using php and mysql. In this tutorial we are going to query a mysql database table with php. And we are going to create a pagination action to split the content in many pages. Posted: 05-Feb-2023 | PHP and MYSQL | Views 2043
Coding a secure login system with php and mysql Hi guys. In this tutorial we are going to create a secure login system with php and mysql. We are gonna have a register page, a login page, a forgot password page, and an user account page where the user is going to be redirected when he logs in successfully. Every input field will have a proper and secure validation, so you can easy implement the code in a live website. Posted: 26-Sep-2022 | PHP and MYSQL | Views 6110
How to insert JSON data in the database In this article we are going to grab data from a JSON file and insert them in the database. The data stored in the JSON file are some products for a bike store. Posted: 06-Feb-2022 | PHP and MYSQL | Views 1492
Writing mysql prepared statements Prepared statements are going to make our transactions with the database safer and more secure. Every time a user's input interacts with the database we have to use prepared statements to avoid any risk of an SQL injection. Posted: 04-Feb-2022 | PHP and MYSQL | Views 1303
Tutorial Categories