In PHP, it is possible to upload multiple files using a single input file element. You just need to customize your single file upload PHP code and en
Read Morefunction random_num($size) { $alpha_key = ''; $keys = range('A', 'Z'); for ($i = 0; $i < 2; $i++) { $alpha_key .= $keys[array_rand
Read MoreThere are two methods for calculating sum of first n say 20 even numbers First method - using For Loop : You can calculate some of first n
Read MoreIn this tutorial we will learn how to search your data. To give a representable design I have used bootstrap 4 in this tutorial. Firstly I created
Read MoreIn this article, I will discuss how you can export data from and to CSV files using PHP and MySQL. This is a very useful and important for use
Read MoreIn this tutorial we will learn how to upload an image in your data. To the previous created form add the following attribute: enctype="m
Read MoreIn this tutorial you will learn the following things :- Deleting your recordEdit your record How to Delete a particular record To delete a
Read MoreIn this article we shall learn how to show records from mysql table. After including the connection file we shall run a sql query which helps in map
Read MoreIn this article we shall learn how to add details to your registered form. If you don’t know how to create a registration form you can learn that in
Read MoreIn this article we shall learn about how to create a registration form using php. For this you should have pre-requisite knowledge of how to create a
Read MoreThe below script is complete solution for upload image and create image thumbnail. At first we will create a PHP script that contains a function. Th
Read MoreFirst create a html login form with user name and password fields. see the code below for html file : <form method="post" action="checkLogin.p
Read MoreYou want that only Logged in users can access your php pages, in case user is not Logged in , he should be redirected to login page. This feature can
Read MoreWhat is Pagination? Paging means displaying all your record in multiple pages instead of showing them all on one page. It will minimize the time
Read MoreWe can use php builtin function mail() to send email. This is very simple and easy to use function. The following code shows an example of sending
Read MoreWhen accessing a database in PHP, we have two choices: MySQLi and PDO. So what should you know before choosing one? The differences, database support,
Read MoreA class is defined by using the class keyword, followed by the name of the class and a pair of curly braces ({}). We define all its properties and m
Read MoreWe can create auto login using cookies in php , this feature is required in case you want to create web view of your website , as mobile user don't w
Read MorePrepared Statements and Bound Parameters A prepared statement is a feature used to execute the same (or similar) SQL statements repeatedly with high e
Read MoreWhat is JSON? JSON stands for JavaScript Object Notation, and is used for storing and exchanging data. Since the JSON format is a text-based format, i
Read MoreTo view the live demo please open url https://jobplatform.in/job_search.php and type kol or starting 3 letters of any city name in the location textbo
Read MoreTechnical definition :A multidimensional array is an array containing one or more arrays. PHP supports multidimensional arrays that are two, three, fo
Read MoreThe PHP community released the PHP 7.2 on November 30, 2017. It comes with new features and performance improvements that will allow us to write bette
Read MoreIn this tutorials, we will learn how to create PHP Login & Remember me functionality using Cookies. HTML Login Form: Create a simple PHP Form wit
Read MoreWhat is a session? In general, session refers to a frame of communication between two medium. A PHP session is used to store data on a server rather t
Read MoreWe can use mysqli and PDO , to connect MySQL database in PHP. You can use any of the two, as both methods provide object oriented approach and prepare
Read MoreAssociative arrays are used to store key value pairs. For example, to store the age of different members of a family in an array, a numerically indexe
Read MoreUploading a image file using php code is very simple. First create an HTML form that allow users to choose the image file they want to upload: <!D
Read MorePHP is a open-source server-side scripting language used to develop web apps. PHP frameworks provide rapid development platform where developers can
Read MoreSQL Injection is a type of an injection attack that makes it possible to execute malicious SQL statements. Attackers can use SQL Injection vulnerabi
Read More