Skip to content

Instantly share code, notes, and snippets.

@tanmayk
Created November 13, 2013 08:25
Show Gist options
  • Save tanmayk/7445566 to your computer and use it in GitHub Desktop.
Save tanmayk/7445566 to your computer and use it in GitHub Desktop.
function example_dependent_options($key) {
$plakalar = array(1, 2); // These are keys from parent dropdown.
$iller = array(
'1' => array(
'1' => 'Aladağ'
),
'2' => array(
'5' => 'Aşkale')
);
if (isset($iller[$key])) {
return $iller[$key];
}
return array();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment