What is OpenCart OpenCart is an open source E-commerce software used to build online stores which provides you to set up your own online business and run your e-commerce cost-effectively. OpenCart has an extensive set of features that give a strong hold over the customization of your store. With OpenCart's powerful tools, you can help … Continue reading OpenCart Introduction
Month: December 2017
What is osCommerce osCommerce (“open source Commerce”) is an e-commerce and online store-management software program. It can be used on any web server that has PHP and MySQL installed. It is available as free software under the GNU General Public License. OsCommerce was started in March 2000 in Germany by project founder and leader … Continue reading osCommerce Introduction
What is PrestaShop? PrestaShop is an open source eCommerce solution. It comes with a variety of tools necessary for building a successful online shop. PrestaShop is fairly easy to use, provides a powerfully responsive store interface for shoppers, offers a comprehensive set of features, and it's free. PrestaShop Features: Unlimited Categories, Products and Attributes Easy … Continue reading PrestaShop Introuduction
What is Object Oriented Programming? Object Oriented Programming (OOP) is a programming paradigm where the complete software operates as a bunch of objects talking to each other. An object is a collection of data and methods that operate on its data. Why OOP? The main advantage of OOP is better manageable code that covers following. … Continue reading OOP Interview Questions and Answers
Following is program to find minimum number from an array: <?php $numbers=array(12,23,45,20,5,6,34,17,9,56); $length=count($numbers); $min=$numbers[0]; for($i=1;$i<$length;$i++) { if($numbers[$i]<$min) { $min=$numbers[$i]; } } echo "The smallest number is ".$min; ?>
The simple concept to find fibonacci series is; add two previous term and get next term. Example of Fibonacci Series is; 0 1 1 2 3 5. Following is a program in PHP to print Fibonacci series . 0, 1, 1, 2, 3, 5, 8, 13, 21, 34 <?PHP $first = 0; $second = 1; … Continue reading Fibonacci series