Welcome Guest, Not a member yet? Register   Sign In
form open
#2

(This post was last modified: 05-08-2018, 11:23 PM by neuron.)

In system/helpers/form_helper.php:
PHP Code:
    function form_open($action ''$attributes = array(), $hidden = array())
    {

//some codes here
        
$attributes _attributes_to_string($attributes);

        if (
stripos($attributes'method=') === FALSE)
        {
            
$attributes .= ' method="post"';
        }


//some codes here

    


As you can see you can set method using $attributes array
Reply


Messages In This Thread
form open - by davy_yg - 05-08-2018, 08:54 PM
RE: form open - by neuron - 05-08-2018, 11:22 PM



Theme © iAndrew 2016 - Forum software by © MyBB