Skip to content

Instantly share code, notes, and snippets.

View RoverWire's full-sized avatar

Luis Felipe Perez RoverWire

  • Colima, Mexico
View GitHub Profile
@RoverWire
RoverWire / MY_Model.php
Last active October 9, 2015 04:57
Custom Model Base
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter MY_Model Class
*
* Base model with CRUD functions for CodeIgniter Framework.
* Bassed on Jamie Rumbelow model base class.
*
* @package CodeIgniter
* @subpackage Libraries
@RoverWire
RoverWire / class.connection.php
Created March 27, 2012 17:44
Tiny MySQL connection class
<?php
/**
*
*/
class Connection
{
private $result;
private $db = array(
'write' => array(
'host' => 'localhost',
{
"files":
{
"jquery.js": "http://code.jquery.com/jquery.min.js",
"backbone.js": "http://backbonejs.org/backbone-min.js",
"underscore.js": "http://documentcloud.github.com/underscore/underscore-min.js",
"modernizr.js": "http://modernizr.com/downloads/modernizr.js",
"normalize.css": "https://raw.github.com/h5bp/html5-boilerplate/master/css/normalize.css",
"main.css": "https://raw.github.com/h5bp/html5-boilerplate/master/css/main.css",
"spark loader": "http://getsparks.org/static/install/MY_Loader.php.txt",
<?xml version="1.0" encoding="UTF-8"?>
<opml version="1.0">
<head>
<title>Suscripciones de Rover en Google Reader</title>
</head>
<body>
<outline text="Activetuts+" title="Activetuts+" type="rss"
xmlUrl="http://active.tutsplus.com/feed/" htmlUrl="http://active.tutsplus.com"/>
<outline text="ALT1040" title="ALT1040" type="rss"
xmlUrl="http://alt1040.com/feed" htmlUrl="http://alt1040.com"/>
public function uploadify(){
if (!empty($_FILES)) {
$tempFile = $_FILES['Filedata']['tmp_name'];
$NombreCalculado = calcular_id();
$Extension = strtolower(strrchr ($_FILES['Filedata']['name'],"."));
$Ruta = $this->artesania->CarpetaImagen.$NombreCalculado.$Extension;
if(move_uploaded_file($tempFile,'.'.$Ruta)){
$DatosArchivo = array();
$DatosArchivo['ruta'] = $Ruta;