OpenCart is an open source PHP-based online shopping cart system. A robust e-commerce solution for Internet merchants with the ability to create their own online business and participate in e-commerce at a minimal cost.
OpenCart is designed feature rich, easy to use, search engine friendly and with a visually appealing interface.
Download link here
Posts Tagged ‘MySql’
OpenCart open source E-commerce solution
Posted in AJAX, CSS, CakePHP, Design, JavaScript, PHP, tagged Array, CakePHP, Design, Future Web, JavaScript, MySql, opencart, PHP on July 9, 2009 | 1 Comment »
Really Easy Field validation with Prototype
Posted in CSS, Design, JavaScript, My Blog, MySql, PHP, tagged CSS, handle, js validation, My Blog, MySql, PHP, validation on May 20, 2009 | Leave a Comment »
Here’s a form validation script that is very easy to use.
Really Easy Field validation with Prototype
Instructions
The basic method is to attach to the form’s onsubmit event, read out all the form elements’ classes and perform validation if required. If a field fails validation, reveal field validation advice and prevent the form from submitting.
Include the javascript [...]
Select random value from MySQL database table.
Posted in MySql, PHP, tagged Database, function, My Blog, MySql, PHP, rand(), random, random value, return data, table on March 25, 2009 | 7 Comments »
The simplest way of selecting random rows from the MySQL database is to use “ORDER BY RAND()” clause in the query.
Solution 1 [SQL QUERY]
SELECT * FROM `table` ORDER BY RAND() LIMIT 0,4;
This query select 4 random value every refresh?
The problem with this method is that it is very slow. The reason for it being so [...]