PHP - crud imagen

 
Vista:
sin imagen de perfil
Val: 35
Ha aumentado su posición en 3 puestos en PHP (en relación al último mes)
Gráfica de PHP

crud imagen

Publicado por Ramiro (20 intervenciones) el 28/11/2018 03:15:13
Hola gente, como puedosolucionar este error:
Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\sigvee\Gerente\Productos2\Control_productos.php:146) in C:\xampp\htdocs\sigvee\Gerente\Productos2\Control_productos.php on line 202

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
<?php
  $txtID=(isset($_POST['txtID']))?$_POST['txtID']:"";
  $txtNonmbre_pro=(isset($_POST['txtNonmbre_pro']))?$_POST['txtNonmbre_pro']:"";
  $txtMarca=(isset($_POST['txtMarca']))?$_POST['txtMarca']:"";
  $txtDescripcion=(isset($_POST['txtDescripcion']))?$_POST['txtDescripcion']:"";
  $txtStock=(isset($_POST['txtStock']))?$_POST['txtStock']:"";
  $txtUnMedida=(isset($_POST['txtUnMedida']))?$_POST['txtUnMedida']:"";
  $txtCategoria=(isset($_POST['txtCategoria']))?$_POST['txtCategoria']:"";
  $txtPrecio=(isset($_POST['txtPrecio']))?$_POST['txtPrecio']:"";
  $txtImagen=(isset($_POST['txtImagen']))?$_POST['txtImagen']:"";
 
  $accion=(isset($_POST['accion']))?$_POST['accion']:"";
 
  include('../../Include/pdo_conexion.php');
 
  switch ($accion) {
    case 'btnAgregar':
      $sentencia=$pdo->prepare("INSERT INTO productos(nombre_pro,marca,descripcion,stock,rela_unmedida,rela_categoria,imagen,precio)
      VALUES(:nombre_pro,:marca,:descripcion,:stock,:rela_unmedida,:rela_categoria,:imagen,:precio)");
 
      $sentencia->bindParam(':nombre_pro',$txtNonmbre_pro);
      $sentencia->bindParam(':marca',$txtMarca);
      $sentencia->bindParam(':descripcion',$txtDescripcion);
      $sentencia->bindParam(':stock',$txtStock);
      $sentencia->bindParam(':rela_unmedida',$txtUnMedida);
      $sentencia->bindParam(':rela_categoria',$txtCategoria);
      $sentencia->bindParam(':imagen',$txtImagen);
      $sentencia->bindParam(':precio',$txtPrecio);
      $sentencia->execute();
 
      echo $txtID;
      echo "Presionaste btnAgregar";
      break;
    case 'btnModificar':
      $sentencia=$pdo->prepare("UPDATE productos SET
        nombre_pro=:nombre_pro,
        marca=:marca,
        descripcion=:descripcion,
        stock=:stock,
        rela_unmedida=:rela_unmedida,
        rela_categoria=:rela_categoria,
        imagen=:imagen,
        precio=:precio WHERE
        id_producto=:id_producto");
 
      $sentencia->bindParam(':nombre_pro',$txtNonmbre_pro);
      $sentencia->bindParam(':marca',$txtMarca);
      $sentencia->bindParam(':descripcion',$txtDescripcion);
      $sentencia->bindParam(':stock',$txtStock);
      $sentencia->bindParam(':rela_unmedida',$txtUnMedida);
      $sentencia->bindParam(':rela_categoria',$txtCategoria);
      $sentencia->bindParam(':imagen',$txtImagen);
      $sentencia->bindParam(':precio',$txtPrecio);
      $sentencia->bindParam(':id_producto',$txtID);
      $sentencia->execute();
 
      header('Control_productos.php');
 
      echo $txtID;
      echo "Presionaste btnModificar";
      break;
    case 'btnEliminar':
      echo $txtID;
      echo "Presionaste btnEliminar";
      break;
    case 'btnCancelar':
      echo $txtID;
      echo "Presionaste btnCancelar";
      break;
  }
 
  $sentencia= $pdo->prepare("select * from productos as p
                              join categoria as c
                              on p.rela_categoria = c.id_categoria
                              join unidad_medida as u
                              on p.rela_unmedida = u.id_unmedida");
  $sentencia->execute();
  $listaProductos = $sentencia->fetchAll(PDO::FETCH_ASSOC);
 
 ?>
 
<form action="" method="post" enctype="multipart/form-data">
 
    <label>ID</label>
    <input type="text" name="txtID" value="<?php echo $txtID;?>" placeholder="" id="txtID" required>
    <br>
 
    <label>Nombre producto</label>
    <input type="text" name="txtNonmbre_pro" value="<?php echo $txtNonmbre_pro;?>" placeholder="" id="txtNonmbre_pro" required>
    <br>
 
    <label>Marca</label>
    <input type="text" name="txtMarca" value="<?php echo $txtMarca;?>" placeholder="" id="txtMarca" required>
    <br>
 
    <label>Descripcion</label>
    <input type="text" name="txtDescripcion" value="<?php echo $txtDescripcion;?>" placeholder="" id="txtDescripcion" required>
    <br>
 
    <label>Stock</label>
    <input type="text" name="txtStock" value="<?php echo $txtStock;?>" placeholder="" id="txtStock" required>
    <br>
 
    <label>Unidad Medida</label>
    <select id ="txtUnMedida" name="txtUnMedida" value="<?php echo $txtUnMedida; ?>" required>
       <option>Seleccione una Opcion</option>
        <?php
        $buscar = $pdo->prepare("select * from unidad_medida;");
        $buscar->execute();
        $row=$buscar->fetchAll(PDO::FETCH_ASSOC);
        foreach ($row as $fila) {
          echo '<option value = "'.$fila['id_unmedida'].'">Unidad de Medida: '.$fila['unidad_medida'].'</option>';
        }
 
        ?>
    </select>
    <br>
 
    <label>Categoria</label>
    <select id ="txtCategoria" name="txtCategoria" value="<?php echo $txtCategoria; ?>" required>
       <option>Seleccione una Opcion</option>
        <?php
        $buscar = $pdo->prepare("select * from categoria;");
        $buscar->execute();
        $row=$buscar->fetchAll(PDO::FETCH_ASSOC);
        foreach ($row as $fila) {
          echo '<option value = "'.$fila['id_categoria'].'">Categoria: '.$fila['categoria'].'</option>';
        }
 
        ?>
    </select>
    <br>
 
    <label>Precio</label>
    <input type="text" name="txtPrecio" value="<?php echo $txtPrecio;?>" placeholder="" id="txtPrecio" required>
    <br>
 
    <label>Imagen</label>
    <input type="text" name="txtImagen" value="<?php echo $txtImagen;?>" placeholder="" id="txtImagen" required>
    <br>
 
    <button type="submit" name="accion" value="btnAgregar" class="btn btn-success">Agregar</button>
    <button type="submit" name="accion" value="btnModificar" class="btn btn-success">Modificar</button>
    <button type="submit" name="accion" value="btnEliminar" class="btn btn-danger">Borrar</button>
    <button type="submit" name="accion" value"btnCancelar" class="btn btn-default" data-dismiss="modal">Cancelar</button>
 
</form>
 
<div class="row">
  <table class="table table-bordered display AlldataTables" id="table_id">
    <thead>
      <tr>
        <th>Imagen</th>
        <th>Producto</th>
        <th>Precio</th>
        <th>Stock</th>
        <th>Categoria</th>
        <th>U/Medida</th>
        <th>Operaciones</th>
      </tr>
    </thead>
    <tbody>
      <?php foreach ($listaProductos as $producto) { ?>
        <tr>
          <td><?php echo $producto['imagen']; ?></td>
          <td><?php echo $producto['nombre_pro']; ?></td>
          <td><?php echo $producto['precio']; ?></td>
          <td><?php echo $producto['stock']; ?></td>
          <td><?php echo $producto['categoria']; ?></td>
          <td><?php echo $producto['unidad_medida']; ?></td>
          <td>
            <form method="post">
              <input type="hidden" name="txtID" value="<?php echo $producto['id_producto']; ?>">
              <input type="hidden" name="txtNonmbre_pro" value="<?php echo $producto['nombre_pro']; ?>">
              <input type="hidden" name="txtMarca" value="<?php echo $producto['marca']; ?>">
              <input type="hidden" name="txtDescripcion" value="<?php echo $producto['descripcion']; ?>">
              <input type="hidden" name="txtStock" value="<?php echo $producto['stock']; ?>">
              <input type="hidden" name="txtUnMedida" value="<?php echo $producto['rela_unmedida']; ?>">
              <input type="hidden" name="txtCategoria" value="<?php echo $producto['rela_categoria']; ?>">
              <input type="hidden" name="txtPrecio" value="<?php echo $producto['precio']; ?>">
              <input type="hidden" name="txtImagen" value="<?php echo $producto['imagen']; ?>">
              <input type="submit" value="Seleccionar" name="accion" class="btn btn-info">
            </form>
          </td>
        </tr>
    <?php  } ?>
    </tbody>
  </table>
</div>
1
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder