The code that i use for arraylist and the way i code for hide the arraylist is like this
<?php
echo arraySelect($companies,
'project_company',
'type="hidden"
class="text"
size="1"',
($project->project_company=2), true);
?>
But when i test this code it doesn’t show me the arraylist hidden, so can i know where the problem is and how to fix it?
If output of your function is something like:
it won’t work as there is no
typeattribute for<select>HTML tags.type=hiddenworks for input’s only.You have to hide the dropbox using css: