debug name files bd
This commit is contained in:
parent
fff6f2c6fd
commit
f22ddcff66
@ -103,15 +103,15 @@ class formAddFilm extends Form{
|
||||
|
||||
if ( $ok ) {
|
||||
$tmp_name = $_FILES['archivo']['tmp_name'];
|
||||
|
||||
if ( !move_uploaded_file($tmp_name, "../img/films/{$nombre}") ) {
|
||||
$nombreBd = str_replace(" ", "_", $tittle).".".pathinfo($nombre, PATHINFO_EXTENSION);
|
||||
if ( !move_uploaded_file($tmp_name, "../img/films/{$nombreBd}") ) {
|
||||
$result['img'] = 'Error al mover el archivo';
|
||||
}
|
||||
|
||||
//if ( !copy("../img/tmp/{$nombre}", "/{$nombre}") ) {
|
||||
// $result['img'] = 'Error al mover el archivo';
|
||||
//}
|
||||
$nombreBd = str_replace("_", " ", $nombre);
|
||||
//$nombreBd = str_replace("_", " ", $nombre);
|
||||
$bd->createFilm(null, $tittle,$duration,$language,$description, $nombreBd); //Null hasta tener $nombre
|
||||
$_SESSION['message'] = "<div class='row'>
|
||||
<div class='column side'></div>
|
||||
|
@ -103,15 +103,15 @@ class formAddPromotion extends Form{
|
||||
|
||||
if ( $ok ) {
|
||||
$tmp_name = $_FILES['archivo']['tmp_name'];
|
||||
|
||||
if ( !move_uploaded_file($tmp_name, "../img/promos/{$nombre}") ) {
|
||||
$nombreBd = str_replace(" ", "_", $tittle).".".pathinfo($nombre, PATHINFO_EXTENSION);
|
||||
if ( !move_uploaded_file($tmp_name, "../img/promos/{$nombreBd}") ) {
|
||||
$result['img'] = 'Error al mover el archivo';
|
||||
}
|
||||
|
||||
//if ( !copy("../img/tmp/{$nombre}", "/{$nombre}") ) {
|
||||
// $result['img'] = 'Error al mover el archivo';
|
||||
//}
|
||||
$nombreBd = str_replace("_", " ", $nombre);
|
||||
//$nombreBd = str_replace("_", " ", $nombre);
|
||||
$bd->createPromotion(null, $tittle,$description,$code,$active, $nombreBd);
|
||||
$_SESSION['message'] = "<div class='row'>
|
||||
<div class='column side'></div>
|
||||
|
@ -114,15 +114,15 @@ class formEditFilm extends Form{
|
||||
|
||||
if ( $ok ) {
|
||||
$tmp_name = $_FILES['archivo']['tmp_name'];
|
||||
|
||||
if ( !move_uploaded_file($tmp_name, "../img/films/{$nombre}") ) {
|
||||
$nombreBd = str_replace(" ", "_", $tittle).".".pathinfo($nombre, PATHINFO_EXTENSION);
|
||||
if ( !move_uploaded_file($tmp_name, "../img/films/{$nombreBd}") ) {
|
||||
$result['img'] = 'Error al mover el archivo';
|
||||
}
|
||||
|
||||
//if ( !copy("../img/tmp/{$nombre}", "/{$nombre}") ) {
|
||||
// $result['img'] = 'Error al mover el archivo';
|
||||
//}
|
||||
$nombreBd = str_replace("_", " ", $nombre);
|
||||
//$nombreBd = str_replace("_", " ", $nombre);
|
||||
$bd->editFilm($id, $tittle, $duration, $language, $description, $nombreBd);
|
||||
$_SESSION['message'] = "<div class='row'>
|
||||
<div class='column side'></div>
|
||||
|
@ -110,15 +110,15 @@ class formEditPromotion extends Form{
|
||||
|
||||
if ( $ok ) {
|
||||
$tmp_name = $_FILES['archivo']['tmp_name'];
|
||||
|
||||
if ( !move_uploaded_file($tmp_name, "../img/promos/{$nombre}") ) {
|
||||
$nombreBd = str_replace(" ", "_", $tittle).".".pathinfo($nombre, PATHINFO_EXTENSION);
|
||||
if ( !move_uploaded_file($tmp_name, "../img/promos/{$nombreBd}") ) {
|
||||
$result['img'] = 'Error al mover el archivo';
|
||||
}
|
||||
|
||||
//if ( !copy("../img/tmp/{$nombre}", "/{$nombre}") ) {
|
||||
// $result['img'] = 'Error al mover el archivo';
|
||||
//}
|
||||
$nombreBd = str_replace("_", " ", $nombre);
|
||||
//$nombreBd = str_replace("_", " ", $nombre);
|
||||
$bd->editPromotion($id, $tittle,$description,$code,$active, $nombreBd);
|
||||
$_SESSION['message'] = "<div class='row'>
|
||||
<div class='column side'></div>
|
||||
|
Loading…
Reference in New Issue
Block a user