Posts

Advance Iphone mobile case designer in canvas using html5 and fabric jquery

i have updated  Iphone mobile case designer in canvas using html5 and fabric jquery model  with new features in it. Download:  Advance Iphone mobile case designer in canvas using html5 and fabric jquery

php internal messaging system in codeigniter

Internal messaging system in Codeigniter is advance version of internal messaging in php submitted on http://www.webestools.com/.I have changed internal messaging system of core php code into codeigniter.Its has features like inbox with read and unread,message reply,login,view buddy list or user list etc. download internal messaging system in codeigniter

yii framework simple shopping cart tutorial for beginners

Provides shpping cart functionality for models. Cart is a container object that holds items collection and have handy methods to work with it. It uses user session as a cart data storage. Installing and configuring 1 way: Registration in the config file Add to protected/config/main.php : [php] 'import'=>array( 'ext.yiiext.components.shoppingCart.*' ), 'components' => array( 'shoppingCart' => array( 'class' => 'ext.yiiext.components.shoppingCart.EShoppingCart', ), ) 2 way: Registration by necessity [php] $cart = Yii::createComponent(array( 'class' => 'ext.yiiext.components.shoppingCart.EShoppingCart' )); //Important! $cart->init(); $book = Book::model()->findByPk(1); $cart->put($book); Preparing a model Models that you are planning to put into the cart should implement IECartPosition interface: [php] class Book extends CActiveRecord implements IECartPosit...

Object Oriented Concepts in PHP5

Object Oriented Concepts in php: Before we go in detail, lets define important terms related to Object Oriented Programming. Class: This is a programmer-defined datatype, which includes local functions as well as local data. You can think of a class as a template for making many instances of the same kind (or class) of object. Object: An individual instance of the data structure defined by a class. You define a class once and then make many objects that belong to it. Objects are also known as instance. Member Variable: These are the variables defined inside a class. This data will be invisible to the outside of the class and can be accessed via member functions. These variables are called attribute of the object once an object is created. Member function: These are the function defined inside a class and are used to access object data. Inheritance: When a class is defined by inheriting existing function of a parent class then it is called inheritance. Here child class w...

Advance plain cart with admin panel(Simple PHP Shopping Cart Tutorial )

Image
Advance plain cart is advance version of http://www.phpwebcommerce.com plain cart. i have added html template to admin panel and shopping cart with special feature like adding sub category and login/logout session for admin and other user level. download the Simple PHP Shopping Cart Tutorial with code AdvancePlainCart Add this embedded code in your blog to share this free Advance plain cart to all php programmers.

Iphone mobile case designer in canvas using html5 and fabric jquery

<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Drag Demo</title> <link href="copy.css" rel="stylesheet" type="text/css" /> <script src="Scripts/jquery.filedrop.js"></script> <link rel="stylesheet" href=" Scripts/styles.css" /> <script src="Scripts/all.js"></script> <script src="Scripts/font_definition.js"></script> <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> <script src="Scripts/script.js"></script> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.js...

Types of software Testing

Black box testing – Internal system design is not considered in this type of testing. Tests are based on requirements and functionality. White box testing – This testing is based on knowledge of the internal logic of an application’s code. Also known as Glass box Testing. Internal software and code working should be known for this type of testing. Tests are based on coverage of code statements, branches, paths, conditions. Unit testing – Testing of individual software components or modules. Typically done by the programmer and not by testers, as it requires detailed knowledge of the internal program design and code. May require developing test driver modules or test harnesses. Incremental integration tests – Bottom up approach for testing i.e. continuous testing of an application as new functionality is added; Application functionality and modules should be independent enough to test separately. Done by programmers or by testers. Integration testing – Testing of inte...