Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 

Search In

How to create a model in OpenERP/Odoo ?

If you want to create a model in OpenERP use like below code - from openerp.osv import fields, osv class course(osv.osv): _name='course' _columns= { 'name':fields.char("Name",size=128,domain=[('name', '=',2)]),

How to remove blank spaces from Request using recursive in CakePHP

Removing the white spaces from a string is a easy task, but for doing this in whole of you website you need the recursive function in Cakephp The 'array_walk_recursive()' will recursively get the request(GET/PUT) data and remove the white/blank spac

How to change the Favicon?

Joomla contains Favicon inside templates/your_templatename/ directory. To change this icon you need to replace that file with the one you want instead of it. Process of changing favicon is described below: First, you need to create a 16x16 pixel im

HTML Event Attributes

Let us discuss some of the HTML Events Attributes: 1. oninput 2. onselect 3. onchange 4. onsubmit 5. onkeypress 6. onresize Let us discuss it one by one 1. oninput - When an element get the user input, this attribute fires automatically. This

What are categories, content items, Sections & Articles in Joomla?

Sections and Categories: Sections and Categories in Joomla are used to organise or manage the articles. A section have one more categories and a category have one or more articles assigned to it. An Article in Joomla is associated with exactly one c

What are the best practices and best places for laravel 4 helpers or basic functions?

Many user will make a helper in app folder but if you want to use helper the best practice and best place to use Laravel 4.x helper in app/libraries folder. So all the basic function and helper we should define in app/libraries. Advantage of librar

Insert a new record if not exist and update if exist, laravel eloquent

Laravel is very useful when we want to do basic operation .Suppose if we have a condition that we have to Insert a new record if not exist and update if exist, If we do this task in php then we have to put if-else condition But In Laravel 4.x we have

How to make controller,command using artisan in laravel 4.x

We can create controller and make command using artisan.The syntax for writing command for controller is: Syntax for writing Controller: php artisan controller:make ControllerName Example for writing Controller: php artisan controller:make User

How to create multilingual translated routes in Laravel 4.x

Now there are n number of site which we have to make multilingual. In Laravel we have the facility to make our site multilingual. In Laravel 4.x we will also make multilingual routes.There are few steps we have to follow to create multilingual transl

Retrieving GET and POST data inside controller in Laravel 4

Retrieving GET and POST data inside controller in the basic requirement which should know everyone when we are working in any framework. In Laravel 4.x It is very easy to get "Get & Post" data. Examples: The Example for Get data is $currentTab

1 62 217
Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: