How to integrate Google reCAPTCHA in PHP Form

Hi all, I’ve to show, how to integrate Google reCAPTCHA in PHP form. reCAPTCHA protects your website from spam and abuse in form submission. reCAPTCHA uses an advanced risk analysis engine and adaptive challenges to keep automated software from engaging in abusive activities on your website. Here I’ve  integrate google reCAPTCHA in subscription form for […]




PHP file inclusion function include() vs require() vs include_once() vs require_once()

PHP file inclusion function include() vs require() vs include_once() vs require_once()

In PHP, insert the same PHP, HTML, or text on multiple pages using include(), include_once(), require() and require_once(). In this article we are going to see real differences between them with an example. Menu page menu.php <?PHP echo ‘<a href=”home.php”>Home</a> – <a href=”about.php”>About</a> – <a href=”contact.php”>Contact</a>’; ?> include function When you want to include a […]




php-mysqli-crud

PHP MySQLi Create, Read, Update and Delete – 2

In previous tutorial how to creating a connection, creating a database, creating a table using PHP MySQLi. Click here to view. In this tutorial, I have to share how to Inserting data Reading data Updating data Deleting data Deleting a table Deleting a database Inserting data Syntax for the insert data in to a table. $sql = ” INSERT INTO table_name ( column_name1, […]



apache-redirect-http-to-https-using-htaccess-rewrite-rules

How to redirect non-www to www using htaccess (Vice versa)

For a website or web application user to access the website with or without “www” (e.g. techdasher.com or www.techdasher.com) for same page. It will be consider as “duplicate content”. Due to this website rank to be drop. The advantage of redirecting a website -> An unique website url avoid to split the page rank. -> Website url is […]