Character encoding to UTF-8

Character encoding to UTF-8

 header('Content-Type: text/html; charset=utf-8');ini_set("default_charset", "UTF-8");mb_internal_encoding("UTF-8");function clean($string) {   $string = str_replace(' ', '-', $string); // Replaces all spaces with hyphens. ...

Simple Encrypt and Decrypt using PHP and aes-256

Simple Encrypt and Decrypt using PHP and aes-256

  $key ="<SOME_KEY_HERE>";$iv='<SOME_KEY_HERE>';function encryptFile($encKey, $encIV, $instr, $outPath) {    $sourceFile=$instr;    $key = base64_decode($encKey);    $iv = base64_decode($encIV);   ...

Send SMS using Infobip API | PHP | Curl call

Send SMS using Infobip API | PHP | Curl call

Recently I used Infobip SMS gateway for my client. It is Wocommerce website. so we are sending SMS...

Send SMS using msg91 API | PHP | Curl call

Send SMS using msg91 API | PHP | Curl call

Msg91 is a my preferred SMS gateway. I used in most of the Apps and websites.Requirement for SMS...

Most Useful common Regex collection

Most Useful common Regex collection

The most commonly used and useful regexes collection. 1) Trim trailing spaces => ^[\s]*(.*?)[\s]*$ 2) Matches any valid HTML tag. (Not...

Create and Send Campaign Using MooSend API

Create and Send Campaign Using MooSend API

<?php $apikey = "<MOOSEND-API-KEY-HERE>"; $listID = "<MOOSEND-LIST-ID-HERE>"; $ep = "https://api.moosend.com/v3/"; $ch = curl_init(); $url = $ep."campaigns/create.json?Format=json&apikey=".$apikey; $bulkPostFields =...

Create and Send Campaign Using Active Campaign API

Create and Send Campaign Using Active Campaign API

Coming Soon.. ...

Create and Send Campaign Using SendGrid API

Create and Send Campaign Using SendGrid API

<?php $apiKey = "<SENDGRID-API-KEY-HERE>";               $html_content = file_get_contents($emailerpath);        ...

Create and Send Campaign Using Mailchimp API

Create and Send Campaign Using Mailchimp API

<?php //Include MailChimp API version 3 Class Library include('mcv3/src/MailChimp.php'); use \DrewM\MailChimp\MailChimp; $MailChimp = new MailChimp('<MAILCHIMP-API-KEY-HERE>'); //create campaign at...

Remove empty items from a multidimensional array in PHP

Remove empty items from a multidimensional array in PHP

The following function removes empty items from a (multidimensional) array and returns the resulting array. Please notice that...

HTML Share Buttons

HTML Share Buttons

These simple social Share Button Codes will help you alot. <div id="share-buttons">       <!-- Buffer -->...

Social Meta Tags for Twitter, Google+, Facebook and More

Social Meta Tags for Twitter, Google+, Facebook and More

Knowing exactly which social meta tags to include can be confusing even to experienced webmasters. This post is...

permalink problem for wordpress site on iis

permalink problem for wordpress site on iis

<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite>     <rules>         <rule name="Main Rule" stopProcessing="true">  ...

Social Follower Count using PHP

Social Follower Count using PHP

This post will help you to find snippets to get followers count for social platforms like Facebook, Twitter,...

Custom Social Share Buttons

Custom Social Share Buttons

Now a days social media is important part of web development and brand promotions. Social share buttons are...

get utm paramater from url in javascript

get utm paramater from url in javascript

UTM paramaters are widely used in adcampaigns to check sources are traffice. google ads and other ads send...

Mobile First Media Queries for Resposive sites

Mobile First Media Queries for Resposive sites

Today we will look into media queries. Many peoples are searching for media queries format on google, but...

URL Rewriting using .htaccess in PHP

URL Rewriting using .htaccess in PHP

Benefits of Static url over Dynamic URLs 1. Static URLs typically Rank better in Search Engines. 2. Search...

Parameter passing to CURL GET Request

Parameter passing to CURL GET Request

This is simple example to pass parameters to php curl get method <?php     /* Script URL...

Black Beauties for Techies

Black Beauties for Techies

Today I am listing some of the black beauties of tech world. which every techies dream to buy....