Welcome Guest, Not a member yet? Register   Sign In
How to set a default value Dropdown approcach?
#2

[eluser]PhilTem[/eluser]
Easiest method:

Code:
// Prepend an item to the array
array_unshift($country, "--Select--"); // '--Select--' will get key '0' (or the first key - 1)

// Parse the dropdown
echo form_dropdown('name', $country);

Another method:

Code:
// Create the country-array
$country = array('--Select--');

// Merge it with what you get from the DB
$country = array_merge($country, $country_from_db);

// Parse it
echo form_dropdown('name', $country);


Messages In This Thread
How to set a default value Dropdown approcach? - by El Forum - 03-21-2012, 04:53 AM
How to set a default value Dropdown approcach? - by El Forum - 03-21-2012, 05:08 AM
How to set a default value Dropdown approcach? - by El Forum - 03-21-2012, 05:20 AM
How to set a default value Dropdown approcach? - by El Forum - 03-21-2012, 06:28 AM
How to set a default value Dropdown approcach? - by El Forum - 03-21-2012, 06:55 AM
How to set a default value Dropdown approcach? - by El Forum - 03-21-2012, 09:22 AM
How to set a default value Dropdown approcach? - by El Forum - 03-21-2012, 09:06 PM
How to set a default value Dropdown approcach? - by El Forum - 03-21-2012, 09:11 PM
How to set a default value Dropdown approcach? - by El Forum - 03-21-2012, 09:27 PM
How to set a default value Dropdown approcach? - by El Forum - 03-21-2012, 09:30 PM
How to set a default value Dropdown approcach? - by El Forum - 03-21-2012, 09:39 PM
How to set a default value Dropdown approcach? - by El Forum - 03-21-2012, 10:13 PM
How to set a default value Dropdown approcach? - by El Forum - 03-21-2012, 10:45 PM



Theme © iAndrew 2016 - Forum software by © MyBB