Quantcast
Channel: Shani's Php CookBook
Browsing all 60 articles
Browse latest View live

PHP, Simple export to csv tutorial for magento

Here is a very simple code you can use to generate your csv file : unlink("upload.csv"); $handle_out = fopen("upload.csv", "a"); $fields_put=array('sku', 'name', 'price', 'short_description',...

View Article


PHP, Magic_Quotes. Getting rid of magic quotes issues

This is how i get rid of magic quotes issues on my PHP projects. function array_map_r( $func, $arr ) { $newArr = array(); foreach( $arr as $key => $value ) { $newArr[ $key ] = ( is_array( $value ) ?...

View Article


YII, form simple drop down

YII, form simple drop down<?php echo $form->dropDownList($form, 'sex',    array('1' => 'male', '2' => 'female'),    array('empty' => 'Select one of the following...')); ?>

View Article

Yii redirect method

{Redirect to HomePage}$this->redirect(Yii::app()->homeUrl);{Redirect to Module 'Admin'}$this->redirect(array('/Admin'));{Redirect to Contorller/Action}$this->redirect(array('post/view'));

View Article

yii change sorting sort order by drag drop Creating a jQueryUI Sortable...

The article below is copied from this URL http://www.yiiframework.com/wiki/238/creating-a-jqueryui-sortable-cgridview/ . That linked article has a small error which i have removed...

View Article


PHP YII Change the Row Color Based on the Column value in CGridView...

Belows is how you can use CGridView 'rowCssClassExpression' to change row color based on a column's value:$this->widget('zii.widgets.grid.CGridView',...

View Article

YII cgridview Tricks

Yii cgridview make custom drop down filters, Yii cgridview set row color based on a condition, Yii cgridview add time picker in filter, Yii cgridview add drop down in colum valuesHere is an example how...

View Article

YII Client side form validation error doesn't prevent form submit

YII Client side form validation error doesn't prevent form submitTo get this behavior you just need to add 'clientOptions' => array('validateOnSubmit'=>true), to your configuration so it would...

View Article


Image may be NSFW.
Clik here to view.

YII CGRIDVIEW, Add form actions to cgridview

This is a tutorial for how to add input text-Field, check-box, buttons in CGridView.Scenario This is CRUD pages for admin menu management. So, Menu model have following things:menuId : INTmenuName :...

View Article


How to upload image(photo), and path entry in database with update functionality

View :Model :Controller :I saw many posts that community newbie is confuse in image/photo upload with random name. so I post this topic covering all useful things regarding to image/photo upload(not...

View Article

How to upload image(photo), and path entry in database with update functionality

View :Model :Controller :I saw many posts that community newbie is confuse in image/photo upload with random name. so I post this topic covering all useful things regarding to image/photo upload(not...

View Article

YII CGridView add a custom button like edit,delete,import etc

Add a custom button to YII CGridView like update,delete buttonsYou can use template property to change order of build-in buttons or add/remove new buttons like...

View Article

yii add a hidden field in form

in viewshidden field with model and form:<?php echo $form->hiddenField($model,'name');?>with value:<?php echo $form->hiddenField($model,'name', array('value'=>$value));?>or without...

View Article


yii last insert id

YII last insert id$insert_id =Yii::app()->db->getLastInsertID();

View Article

YII CGRIDVIEW drop down filter

<?php $this->widget('zii.widgets.grid.CGridView', array( 'itemsCssClass' => 'table table-hover table-striped table-bordered table-condensed', 'id' => 'orders-grid', 'dataProvider' =>...

View Article


Image may be NSFW.
Clik here to view.

YII relation ships join queries

Relational Active RecordDeclaring RelationshipPerforming Relational QueryPerforming Relational query without getting related modelsRelational Query OptionsDisambiguating Column NamesDynamic Relational...

View Article

YII, form simple drop down

YII, form simple drop down<?php echo $form->dropDownList($model, 'sex',    array('1' => 'male', '2' => 'female'),    array('empty' => 'Select one of the following...')); ?>

View Article


Yii redirect method

{Redirect to HomePage}$this->redirect(Yii::app()->homeUrl);{Redirect to Module 'Admin'}$this->redirect(array('/Admin'));{Redirect to Contorller/Action}$this->redirect(array('post/view'));

View Article

yii change sorting sort order by drag drop Creating a jQueryUI Sortable...

The article below is copied from this URL http://www.yiiframework.com/wiki/238/creating-a-jqueryui-sortable-cgridview/ . That linked article has a small error which i have removed...

View Article

PHP YII Change the Row Color Based on the Column value in CGridView...

Belows is how you can use CGridView 'rowCssClassExpression' to change row color based on a column's value:$this->widget('zii.widgets.grid.CGridView',...

View Article
Browsing all 60 articles
Browse latest View live