Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created August 7, 2019 18:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/b3c8fa0801fe75912febb1625f924441 to your computer and use it in GitHub Desktop.
Save parzibyte/b3c8fa0801fe75912febb1625f924441 to your computer and use it in GitHub Desktop.
<?php
class HolaMundoModel extends CI_Model{
public function obtenerLista(){
return array(
"Esta", "Es", "una",
"lista", "obtenida",
"desde", "el",
"Modelo");
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment