Category: PHP

  • Change Excerpt Length in posts

    Change Excerpt Length in posts

    Sometimes titles are not that effective to grab the viewer’s attention, In that case, viewers go through with the summary which we call excerpts to read about the quality of the content. By default, the default length of excerpts provided by WordPress for excerpts is 55 words, which may not be sufficient. In this post,…

  • Easily Export MySQL Data to Excel (.xls) file

    Easily Export MySQL Data to Excel (.xls) file

    Hello guys, previously we have posted a good script to export data from MySQL to CSV File, today we will share another script which would export data from MySQL to excel file. This script would list all the tables of a database in a dropdown and after selecting a table, it would list all the…

  • Multiple Image Upload and Generate Thumbnails in PHP

    Multiple Image Upload and Generate Thumbnails in PHP

    Hi guys, in this post we will see how to upload multiple images and generate thumbnails of uploaded images on the fly and also save image name/path to database. We have used image magician library to generate thumbnails, it’s really great and easy to use. You can check their official site here. This script would…

  • PayPal Recurring Payment IPN in PHP

    We have already published a post on integrating PayPal Payment Gateway in PHP and how to integrate PayPal IPN in PHP. In this post we will see how to use PayPal IPN in PHP to setup recurring payments. Consider a case where you offer service on a subscription basis. An example would be, user pays you every…

  • Easily Integrate Paypal IPN in PHP

    Easily Integrate Paypal IPN in PHP

    We have already published a post on integrating PayPal with PHP. In this post we will see how to use PayPal IPN in PHP. PayPal IPN (instant payment notification) allows you to integrate PayPal payments with web application backend. As the name suggests it sends instant notification of the payment processed so that you can…