Category: Php
There is an issue on Yii2 to redirecting / urls to /frontend/web. In other words we need a way to hidden /frontend/web from addresses. We will do this without changing …
Here is the curl call for to get the chats for Zopim online live chat platform. List of Chats Done in zopim $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, "https://www.zopim.com/api/v2/chats"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, …
Here is the line which will remove all non utf-8 characters from string. $string = preg_replace('/*/','', $string);
$("#addSkuForm").validate({ // Specify validation rules rules: { // The key name on the left side is the name attribute // of an input field. Validation rules are defined // on …
<?php $apiUrl = "URL"; $fields = json_encode(array()); $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $apiUrl); curl_setopt($ch, CURLOPT_HTTPHEADER, ); curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET"); curl_setopt($ch, CURLOPT_POSTFIELDS, $fields); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 60); curl_setopt($ch, CURLOPT_TIMEOUT, …
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 …
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 …
Here is the code to generate the sample csv file that downloads directly by hitting the url. header("Content-Disposition:attachment;filename=travel-plan-sample-".date("ymdhis").".csv"); header("Pragma: no-cache"); header("Expires: 0"); $headers = $body = ""; $response = array( …
As all of we know that you must need to have a hosting to run your website online. There is another short way to live your website by using a …
Bitrix24 As all of you people know that Bitrix24 is a very well known platform that supports different features to work on or collaborate Like CRM, Social Network, Hr Tools …