Category: PHP
-
PHP CRUD Tutorial for Beginners – Step By Step Guide!
Previously, we learned how to make our application look good using the Bootstrap CSS framework. This time, we will learn CRUD operations with PHP and MySQL. CRUD stands for Create, Read, Update and Delete database records. Overview This tutorial is for your if: Coding CRUD with PHP and MySQL is one of the basics. PHP…
-
How To Customize reCAPTCHA
Have you ever received unsolicited (Spam) messages, comments, or notifications in your email, Facebook account, or to other services you are using online? Probably yes. I think almost all people using the internet experienced it already. There are trillions of spam messages sent every year. One effective way to prevent those spam messages to your…
-
How To Display Image from Database in PHP?
[adinserter block=”34″] Someone asked me how to display an image saved in the database in PHP. Here’s how I did it. In this code, we will use two files – index.php and source.php and a database table with sample image data stored. Please note that I used BLOB data type for storing my images, it…
-
How To Send Email Using PHP Mail Function
Hi guys! Today we’ll be sending email using the PHPMail Function. I think this is much easier than using a PHP library like PHPMailer. You don’t have to specify your email address and password to sent email, just specify the “from” email address you want. But you must have a live mail server. By the…