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 ArticlePHP, 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 ArticleYII, 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 ArticleYii 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 Articleyii 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 ArticlePHP 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 ArticleYII 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 ArticleYII 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 ArticleYII 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 ArticleHow 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 ArticleHow 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 ArticleYII 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 Articleyii 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 ArticleYII 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 ArticleYII relation ships join queries
Relational Active RecordDeclaring RelationshipPerforming Relational QueryPerforming Relational query without getting related modelsRelational Query OptionsDisambiguating Column NamesDynamic Relational...
View ArticleYII, 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 ArticleYii 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 Articleyii 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 ArticlePHP 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