Create Modules in the Header for OpenCart
Suppose we want to add a slideshow module in the header of an OpenCart website. First we have to add a new position in the back end. This means you should change three files and add some lines into each. You should add a new position in admin/controller/slideshow.php $this->data['text_header'] = $this->language->get(‘text_header’); Then do this in [...]
Read MoreCreate a Custom Page in OpenCart
If you want to create a custom page in opencart, there are two ways to do it : 1. You can go into the information section using the admin area. 2. You can create a controller file for your page, which points to a few other pages. In codeigniter you would create a controller and [...]
Read MoreHow to Create a Digital Shopping Cart with CodeIgniter
RedBonzai Developers, INC is a group of web application developers dedicated to serious web development in Houston, Tx. We are currently expanding our repertoire to CodeIgniter Applications. We will talk quite a bit about E-Commerce in times to come, but in particular we are using our PHP development skills to create a CodeIgniter Shopping Cart [...]
Read MoreHow to Install PHP MySql Apache phpMyAdmin on Ubuntu 9.04
This is the quickest way that I know how to install PHP, MySql, Apache, and phpMyAdmin on Linux using Ubuntu 9.04. This should literally take 15 minutes to complete.
Read MoreUpdate Multiple Mysql Rows in a Single Query
Here is a smart way to update multiple database rows inside of a single SQL Query. We are going to incorporate PHP programming to generate a dynamic MySql query that could update hundreds of rows inside of a mysql Database.
Read MoreUsing jQuery and PHP to scrape web page content
Here is a nice trick using AJAX methods ( the javascript is in jQuery) with PHP to scrape pages of safe domains, or from subdomains that you own.
Read MoreHow to Use Gravatars ( Avatars)
This is a small tutorial on how to work with Gravatar in your PHP Web Development
Read Morebuild a bbCode parser function in PHP
This is a fast and easy way to build a bb Code Parser in PHP for your Web Development projects.
Read MoreReplace HTML Special Characters
Replace HTML characters with entities, and do it in a way that does not affect the tags.
PHP has a couple of useful functions for this sort of thing, namely htmlentities and htmlspecialchars. However running my string through either of these was no good to me because doing so would convert the characters used in the html tags too. For example, the following
Read More






