Skip to content

Instantly share code, notes, and snippets.

@fake-or-dead
Created August 19, 2012 07:08
Show Gist options
  • Save fake-or-dead/3393068 to your computer and use it in GitHub Desktop.
Save fake-or-dead/3393068 to your computer and use it in GitHub Desktop.
CI transform database re-arrange result to be array("value1", "value2")
// re-arrange result to be array("value1", "value2")
$options = array("");
foreach ($query->result_array() as $key => $value) {
array_push($options, $value['field_name']);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment