Skip to content

Instantly share code, notes, and snippets.

@samacs
Created April 26, 2013 22:15
Show Gist options
  • Save samacs/5470821 to your computer and use it in GitHub Desktop.
Save samacs/5470821 to your computer and use it in GitHub Desktop.
try {
$fecha = date('Y-m-d');
$mensajeId = mysql_insert_id();
$path = realpath($_SERVER['DOCUMENT_ROOT'] . DS . '..' . DS . 'adjuntos');
$path = $path . DS . implode(DS, explode('-', $fecha)) . DS . $mensajeId;
if (!file_exists($path)) {
mkdir($path, 0777, true);
}
$file = $_FILES['archivo_adjunto'];
$tmpFile = $file['tmp_name'];
$destination = $path . DS . $file['name'];
$adjunto = array(
'fecha' => '\'' . date('Y-m-d') . '\'',
'id_mensaje' => $mensajeId,
'nombre_archivo' => '\'' . $file['name'] . '\'',
'type' => '\'' . $file['type'] . '\'',
);
$insert = 'INSERT INTO archivos_mensajes (fecha, id_mensaje, nombre_archivo, type) VALUES(' . implode(', ', $adjunto) . ')';
mysql_query($insert, $conectar);
} catch (Exception $e) {
var_dump($e);exit;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment