array ("name" => "cat_desc", "label" => "Description", "visible" => "t,t", "type" => "text", "lang" =>"", "extra" => "editor", "help" => ""), PHP: what is the meaning of the above code??? what does it mean by "visible"?? smbdy pls give a solution???
It is nothing. It is just an array of strings. Let's say it is : $items = array ("name" => "cat_desc", "label" => "Description", "visible" => "t,t", "type" => "text", "lang" =>"", "extra" => "editor", "help" => ""), PHP: Then, $items['name'] carries the string cat_desc $items['visible'] carries the string t,t and so on. - ads2help