Skip to main content

Posts

Showing posts from August, 2020

send verify mail to gmail account and activate account using php oop concept and pdo for database

How to send verify mail to gmail account and activate account using php oop concept and pdo for database Today I will explain how to , in this tutorial  send verify mail to gmail account and activate account using php oop concept and pdo for database  ,I will implement.                           This tutorial demonstrate to build an email verification script . Email verify is a PHP script that allows you to verify email address without storing anything in any databases.it will send users an email requiring them to  click a link to verify their email before  and then your account will be activated...    And then first, we need to establish a database connection and create a table to insert the account data. So let's go to PHPMyAdmin and create a new  database with the name   "dbtest"  create a user account that has access to that database in order to inse...

Create Login Page Very Easy Using PHP and PDO Database

How to Create Login Page Very Easy Using PHP and PDO Database Today i will explain how to create Login page very easy using  PHP and OOP concept and PDO (PHP DATA OBJECT) database, in this tutorial I will implement.                         Before moving towards the tutorial we need first   PDO  is improved extension it's must be used  in PHP. Its create strong security and  and function maintaining a user session very easy using oops so let's see the tutorial. What is mean by PDO?                                   The  PHP Data Objects  (PDO) extension defines a Light weight, Interface for  Accessing Databases in PHP. It defines consistent API for working with various database systems.  PDO represents between PHP and Database Sever. First Create a Database named as your wishe...