by admin | Dec 8, 2019 | Clickfunnels, Javascript
Since we don’t have much access to the code in clickfunnels we have to resort to javascript. Here is a quick little snippet to add current date within funnels in javascript using moment.js You can use it for something like offers expire today etc. <script...
by admin | Dec 5, 2019 | macOS, SSH
A weird issue encountered while trying to run laravel’s php artisan commands while logged in using SSH. Following was the error. perl: warning: Setting locale failed. perl: warning: Please check that your locale settings: LANGUAGE = (unset), LC_ALL = (unset),...
by admin | Dec 5, 2019 | PHP
Convert object to array in PHP $new_array = objectToArray($yourObject); function objectToArray($d) { if (is_object($d)) { // Gets the properties of the given object // with get_object_vars function $d = get_object_vars($d); } if (is_array($d)) { /* * Return array...
Recent Comments