A payment gateway is an online service that authorizes and processes payments for online businesses.PayUMoney is the most polular payment Gateway in India. Easily integrate PayUMoney in your Web Application to let your customer to pay through Credit Cards, Debit Cards, Net Banking etc. In this tutorial how to integrate PayUmoney Payment Gate [...]
Category: Tutorials
We have share in this tutorial how to Reading, Counting Line, Words, and Characters in File With PHP. First, read the file into a string with a function such as file_get_contents(). The numbers of words and characters can then be obtained by running the str_word_count() and strlen () function on the string.
We have share in this tutorial help to increase max upload size in PHP with WHM.There are three settings within the PHP info file that are relevant to your upload limit.
1-memory_limit – This defines how much memory is allocated to PHP. You will simply need to ensure that this number is as high or higher than the upload limit you want to s [...]
We have share how to create Bit.ly short URLs using PHP.Bit.ly is a powerful API to generate short URL. To use this API you have to signup for an API key.The API also provides methods to get the long URL from a short one, validate a short one, and also get all sorts of statistics about a URL that you've shortened using bit.ly.
Step 1 Creat [...]
CodeIgniter is an open-source Web Application framework built in PHP designed to make your life as a programmer easier, while allowing you a good speed for development, and also good performance when the site is up and running.
Easy to install and configure
Clean and elegant MVC implementation
Uses Active Record pattern for datab [...]
In this tutorial We have share how to get all parent categories from child category with a single query in MYSQL
I do this:
$childCategoryID = 55
SELECT c.*
FROM (
SELECT
@r AS _id,
(SELECT @r := parent_id FROM category WHERE id = _id) AS parent_id,
@l := @l + 1 AS level
[...]