Code Labs

Friday, August 25, 2023

Character encoding to UTF-8

›
  header('Content-Type: text/html; charset=utf-8'); ini_set("default_charset", "UTF-8"); mb_internal_encoding(...
Tuesday, July 5, 2022

Simple Encrypt and Decrypt using PHP and aes-256

›
   $key ="<SOME_KEY_HERE>"; $iv='<SOME_KEY_HERE>'; function encryptFile($encKey, $encIV, $instr, $outPath) {  ...
Tuesday, February 1, 2022

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 communication for various Wocommerce even...

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 send using API. 1) MSG91 account and Authe...
Wednesday, April 24, 2019

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...
Saturday, March 2, 2019

Create and Send Campaign Using MooSend API

›
<?php $apikey = "<MOOSEND-API-KEY-HERE>"; $listID = "<MOOSEND-LIST-ID-HERE>"; $ep = "https...

Create and Send Campaign Using Active Campaign API

›
Coming Soon..

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

›
<?php //Include MailChimp API version 3 Class Library include('mcv3/src/MailChimp.php'); use \DrewM\MailChimp\MailChimp;...
Monday, May 7, 2018

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 the use...
1 comment:
Wednesday, April 19, 2017

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

›
Knowing exactly which social meta tags to include can be confusing even to experienced webmasters. This post is a huge help, and Wordpr...
Wednesday, March 15, 2017

permalink problem for wordpress site on iis

›
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite>    ...
Sunday, November 8, 2015

Social Follower Count using PHP

›
This post will help you to find snippets to get followers count for social platforms like Facebook, Twitter, Google plus,  Youtube, Insta...
10 comments:
Saturday, November 7, 2015

Custom Social Share Buttons

›
Now a days social media is important part of web development and brand promotions. Social share buttons are widely used things on a ...
Friday, August 21, 2015

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 a parameters, such as utm_so...
Thursday, July 30, 2015

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 many times they dont get prop...
Sunday, March 8, 2015

URL Rewriting using .htaccess in PHP

›
Benefits of Static url over Dynamic URLs 1. Static URLs typically Rank better in Search Engines. 2. Search Engines are known to index...
Friday, January 2, 2015

Parameter passing to CURL GET Request

›
This is simple example to pass parameters to php curl get method <?php     /* Script URL */     $url = 'http://www.example....
Tuesday, July 22, 2014

Black Beauties for Techies

›
Today I am listing some of the black beauties of tech world. which every techies dream to buy. For me Black is a color of new technology an...
›
Home
View web version
Powered by Blogger.