Author: mrabd423
Simples curl call that can pull all the interest categories ids from a list of mailchimp. $apiKey = ; $url = 'https://us18.api.mailchimp.com/3.0/lists//interest-categories'; $ch = curl_init($url); curl_setopt($ch, CURLOPT_USERPWD, 'user:' . $apiKey); …
$apiKey = ''; $url = 'https://us14.api.mailchimp.com/3.0/lists/LIST_ID/members'; $ch = curl_init($url); curl_setopt($ch, CURLOPT_USERPWD, 'user:' . $apiKey); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_TIMEOUT, 10); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); $result = curl_exec($ch); $err = curl_error($ch); curl_close($ch); …
<style> table { position: relative; width: 700px; background-color: #aaa; overflow: hidden; border-collapse: collapse; } /*thead*/ thead { position: relative; display: block; /*seperates the header from the body allowing it to …
Here is the ready to go code that converts table to csv <!DOCTYPE html> <html> <head> <script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"> jQuery.fn.tableToCSV = function() { var clean_text = function(text){ text = …
The command below is to remove the linux old header files from your linux server rm -rf /usr/src/linux-headers-3.2.0-29*
Hi to all my friends. Due to request of many people the issue was rising that your virtual hosts are showing the ssl certificate issue. And i’ve find out the …
You can make virtual host in apache. It’s quite simple. If you are using windows. There are only two steps. Step 1 : Just open the file C:\xampp\apache\conf\extra\httpd-vhosts.conf Just add …
We can generate a real time pdf using php with the help of FPDF library. This library used to make the pdf file on the run time. It allows the …
We all know that very limited storage we get in linux servers packages. Often linux users face issue of disk space. First you need to login in to your linux …
Many times we are required to have pre-populated list in the excell sheet. So that user can select the options from the list while entering data in the sheets. There …