by Cube Websites | Mar 7, 2016 | Ember, PHP
Introduction This guide will show you how to setup a new project using Ember and Laravel, JSON-API and token based authentication. The deployed version of your application will be a Laravel backend which serves up the Ember frontend using a Laravel route. Software At...
by Cube Websites | Feb 29, 2016 | PHP
The Code // Inline Style Images $content = preg_replace_callback(‘/!\[(.*)\]\s?\((.*)(.png|.gif|.jpg|.jpeg)(.*)\)/’,function($match){ return str_replace(‘your_search_term’,’your_replacement’,$match[0]); },$content); // Reference...
by Cube Websites | Jul 4, 2015 | Guides, PHP
Telegram messenger recently released an API that lets you easily create bots for their platform. After deciding to have a bit of a play with it, I found that I had an issue where the webhooks would not send any updates to my server with no apparent error. The Problem...
by Cube Websites | Aug 27, 2012 | Concrete5, Development, PHP
Hi folks, I’m back with another freebie for you. This time it’s a Concrete5 package that lets you create, manage and display testimonials on your website. The following fields are available to you: Title Author Department Quote URL Display Order When...
by Cube Websites | Dec 30, 2011 | MySQL, PHP
Introduction When working with databases, you may want a table structure which allows your record to have a parent record (heirachical recordset). In simple scenarios it’s easy enough to simply have a parent_id column. However, for displaying the entire tree...
by Cube Websites | Oct 20, 2010 | PHP
Here’s a quick tip on how to disable notices like this one appearing on your site: Deprecated: Function eregi() is deprecated in… At the top of your application (bootstrap or index file) just add the following line of PHP: error_reporting(E_ALL &...