admin

admin

How to Write Text Over Image / Picture using PHP

Adding custom text over image is a good way to declare give a simple title information to that graphical image or picture without editing the image itself. PHP has made it very easy to add custom text over image or…

How get one week date using PHP

This is a short guide on how to get the date of the week from a monday to sunday in PHP. This is useful for whenever you need to figure out what date a particular date fell on (or will…

Voilanorbert API using PHP curl

Search emails are based on the full name plus the domain or company name. When your account does not have sufficient credits an HTTP status code of 402 is returned. Also, take into consideration that we check the domain for…

Lusha API using PHP curl

The Lusha API returns data of business profiles. It can access a user’s phone, email, and location. It is available in REST architecture with API Key by request using PHP curl. Example <?php $url = ‘https://api.lusha.co/person?firstName=?&lastName=?&company=?’; $ch = curl_init(); curl_setopt($ch,…

How to Create PDF in PHP using Dompdf

In this tutorial, we are going to show you how to show the user dynamically-generated PDFs from your web application that relies on PHP. We are going to use a third-party library called Dompdf that enables us to create PDFs…

Using new Google reCAPTCHA with PHP and AJAX

ajax

In the tutorial, I will be using a working HTML contact form. We will submit it via AJAX (the page will not reload) and process the form values with PHP. Google has released the new reCAPTCHA. They need just a…

Using new Google reCAPTCHA using PHP

ajax

In the tutorial, I will be using a working HTML contact form. We will submit it post method process the form values with PHP. Google has released the new reCAPTCHA. They need just a single click to confirm they are…

How to Login System using PHP with MYSQL database

This is a simple login script using php and mysql. In this script, a form will be displayed with two fields, email and password. When user is submitting with valid email and password, then he can access authenticated page. First…