generate random unique hex color code using PHP

generate random unique hex color code using PHP echo ‘#’ . substr(str_shuffle(‘ABCDEF0123456789’), 0, 6); Generating random unique hex color code using PHP md5() function In this post, we are going to see how to generate random CSS hex color codes using PHP md5() function. The PHP md5() function calculates the MD5 hash of a string. … Read more

PHP 7 Export CSV File to MySQL Database Using  HTML5 & Javascript

PHP 7 Export CSV File to MySQL Database Using  HTML5 & Javascript PHP 7 Script to Export CSV File to MySQL Database Tables in Browser Using HTML5 & Javascript Full Project For Beginners Related searches Top 50 JavaScript Interview Questions Must Prepare Top 10 Programming Languages That Will Rule in 2021 Difference Between JavaScript and … Read more

How to Download Image From URL in PHP

How to Download Image From URL in PHP Welcome Folks I am back with another blog post. In this post We will be making an application in which we will be Downloading Images From URL in PHP. The demo of the application is given below in this video as follows. Full Source Code of Application … Read more

How to send email from PHP without SMTP server

What is PHP mail And send email from PHP without SMTP ? PHP mail is the built-in PHP function that is used to send emails from PHP scripts. The mail function accepts the following parameters: Email address Subject Message CC or BC email addresses It’s a cost-effective way of notifying users of important events. Let … Read more

PHP Basic Interview Questions and Answers in Hindi

PHP Basic Interview Questions and Answers Hindi Q.1  PHP क्या है|  PHP एकसर्वर साइड प्रोग्रामिंग लैंग्वेज है| इसका उपयोग वेब डेवलपमेंट में किया जाता है| इसके इस्तेमाल से डायनामिक वेबसाइट्सऔर वेब ऍप्लिकेशन्स बनाई जाती हैं|  डायनामिकवेबसाइट्स ऐसी वेबसाइट्स होती हैं जिसमे इनफार्मेशन ऑटोमेटिकली बदलती रहती है|  इसप्रोग्रामिंग लैंग्वेज के द्वारा सर्वरकंप्यूटर पर ऐसे प्रोग्रामबनाकर रन … Read more

form validation in php and mysql | Vkprogramming

An HTML form contains various input fields such as text box, checkbox, radio buttons, submit button, and checklist, etc. These input fields need to be validated, which ensures that the user has entered information in all the required fields and also validates that the information provided by the user is valid and correct.   There … Read more

CRUD Operation in Codeigniter with MySQL Database

PHP Codeigniter – CRUD Operation in Codeigniter with MySQL Database CRUD (Create, Read, Update and Delete) operations are commonly used to manipulate data in the database. Almost, all web application used Add, Edit, Update and Delete functionality for managing data. In this tutorial, we will create a simple CRUD application in CodeIgniter with MySQL to … Read more