Doyenhub Product MySQL PHP

Bulk Insert in MySql using LOAD DATA INFILE

Are you looking for the stuff to insert bulk data into MySQL table? Go for “LOAD DATA INFILE” MySQL concept.  This is the best way I am witness of. You might need to use this concept in 2 ways. 1)      Bulk Insert Functionality in PHP Application 2)      Import bulk records directly in MySQL Let’s discuss “How to implement this mechanism”…
Cake PHP Doyenhub Product Laravel PHP

Why PHP Framework over CorePHP?

Why PHP Framework over CorePHP? [caption id="attachment_2613" align="aligncenter" width="1000"] CorePHP-VS-PHPFrameworks[/caption] Introduction In the world of web development, developers often debate the choice between Core PHP and PHP frameworks. While Core PHP offers complete freedom and flexibility, PHP frameworks provide a structured, efficient, and secure way to develop applications. This article delves into why PHP frameworks are often the superior choice…
Codeigniter PHP

Block directory browsing in PHP

Block Directory Browsing in PHP How to Secure Your PHP Application by Blocking Directory Browsing Directory browsing is an important security consideration for any web application. While developers often take extensive precautions to prevent their code from being copied, one crucial aspect is sometimes overlooked: disabling directory browsing. By implementing this mechanism, you can protect sensitive client-side scripts, stylesheets, images,…
PHP SEO Wordpress

Transfer Blog from google to wordpress

Ohh, Welcome to my blog. Are you looking for the stuff which helps you to transfer your Google Blogspot posts to your own WP Blog Site? You are on right page. I have recently completed this for our company blog site. Here, I am sharing my experience with you. I have referred lots of stuff over internet. Eventually find one…
PHP Wordpress

How to setup multiple site in wordpress

This new feature is being called Network or Multi-site option. In WordPress By default this feature is disabled. If you want to use this option in your WordPress, you need to enable it.To enable this feature, simply open your wp-config.php file located in your WordPress root folder. Then add the following line anywhere in the file: define(‘WP_ALLOW_MULTISITE’, true); Refer to…