
Search In
Hi All,
I recently required to created a custom pagination with the help of Bootstrap in my core PHP project. I thought that my code may help others also who wish to create the same.
The reason why I am using Bootstrap is as it ease our work becaus
Laravel PHP framework is developed to make a few development tasks easier for developers for example:
authentication, sessions, caching and routing.
That means web application development difficulties are resolved using the Laravel
My previous articles titled Connecting MySQL database with MySQLi Object Oriented style and How to connect MySQL database using the MySQLi procedural function demonstrate about different ways to connect to a MySQL database with PHP application. Those
//this code use to deduct amount automatically from buyers account
//step1. include paypal.class.php file (find attached file)
include_once('paypal.class.php');
$objPaypal = new MyPayPal();
$PayPalMode = 'sandbox'; // sandbox or li
This article explains the use and difference of DELETE, TRUNCATE and DROP statements of MySQL.
1. DELETE : DELETE command is used to delete all or specific records from MySQL table. The records delete using DELETE can be rollback. This command also
Concept of active,inactive script is mostly used in Online shopping website, Where adminstrator has right to access the database table and can be able to do changes on the table according to his need. For example a site owner wants to hide some of it
Welcome to FindNerd.
Today I am going to discuss two widely used functions in word-press that are add_action and add_filter. I have described the hooks and its uses in previous blogs so please follow these blogs for the same. Here we are discussing
This article demonstrates some PHP functions which are used to fill an array with values. The list and details of these functions are given below :
1. array_fill()
array_fill() function is used to fill an array with a specified value.
&nbs
To get the table and field information of a table in MySQL using PHP we will follow the steps given below:
Make a connection.
Select a database.
Find the number of fields using the mysql_num_fields().
Then we will print the type, name, length, flag
Hello Reader's If you are developing the project related to gaming and you want make the Ranking of your users, Then this blog is very helpful to you.
Suppose you have a criteria of total wins by a user on which the ranking will assign. You can
