PHP - Campos editables con datos de la base de datos

 
Vista:
Imágen de perfil de Daniel
Val: 5
Ha aumentado su posición en 27 puestos en PHP (en relación al último mes)
Gráfica de PHP

Campos editables con datos de la base de datos

Publicado por Daniel (4 intervenciones) el 02/04/2019 12:40:08
Buenos días,
Quería hacer una consulta ya que llevo atascado con este tema dos días, lo que me propuse es hacer una tabla donde se muestren los datos de una base de datos, hasta hay esta todo bien me lo muestra y todo, seguidamente quería hacer que esos mismos campos fueran editables para poder rellenarlos y que se actualizaran en la BD.
Pero no e conseguido hacerlo, tengo la función de editar los campos

Aquí os adjunto los códigos que tengo ahora mismo.

TABLA

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
<table id="data_table" class="table table-light">
    <thead class="thead-light">
      <tr>
        <th scope="col">ID</th>
        <th scope="col">NOMBRE</th>
        <th scope="col">1º APELLIDO</th>
        <th scope="col">2º APELLIDO</th>
        <th scope="col">TELEFONO</th>
        <th scope="col">EMPRESA</th>
        <th scope="col">CALLE</th>
        <th scope="col">NUM</th>
        <th scope="col">ESCALERA</th>
        <th scope="col">PISO</th>
        <th scope="col">PUERTA</th>
        <th scope="col">CP</th>
        <th scope="col">LOCALIDAD</th>
        <th scope="col">PROVINCIA</th>
      </tr>
    </thead>
     <tbody>
      <?php
        $id = $_POST['idganador'];
        $query = "SELECT * FROM ganadores WHERE id_part=$id";
        $resul = $conn->query($query);
        while($row = mysqli_fetch_assoc($resul)){
      ?>
      <tr id="<?php echo $row['id_part'] ?>">
          <td style="border-bottom: 1px solid"><?php echo $row['id_part']?></td>
          <td style="border-bottom: 1px solid"><?php echo $row['nombreg']?></td>
          <td style="border-bottom: 1px solid"><?php echo $row['apellido1g']?></td>
          <td style="border-bottom: 1px solid"><?php echo $row['apellido2g']?></td>
          <td style="border-bottom: 1px solid"><?php echo $row['telg']?></td>
          <td style="border-bottom: 1px solid"><?php echo $row['empresa']?></td>
          <td style="border-bottom: 1px solid"><?php echo $row['calle']?></td>
          <td style="border-bottom: 1px solid"><?php echo $row['num']?></td>
          <td style="border-bottom: 1px solid"><?php echo $row['escalera']?></td>
          <td style="border-bottom: 1px solid"><?php echo $row['piso']?></td>
          <td style="border-bottom: 1px solid"><?php echo $row['puerta']?></td>
          <td style="border-bottom: 1px solid"><?php echo $row['cp']?></td>
          <td style="border-bottom: 1px solid"><?php echo $row['localidad']?></td>
          <td style="border-bottom: 1px solid"><?php echo $row['provinciag']?></td>
          <!--<td style="border-bottom: 1px solid">
            <?php
              if ($row['envio']==1){
                  echo 'OK';
              }
              if($row['envio']==0){
                 echo "NO";
              }
            ?>
          </td>
          <td style="border-bottom: 1px solid">
            <?php echo '<button type="button" class="btn btn-success" ' . 'id="'.$row['id_part'].'" '. 'data-toggle="modal"'.  'data-target="#mod">' .'Modificar'.'</button>';
            ?>
          </td>-->
      <tr>
        <?php } ?>
    </tbody>
</table>

FUNCION (table_edit.js)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
$(document).ready(function(){
    $('#data_table').Tabledit({
        url: 'editarCelda.php',
        deleteButton: false,
        editButton: false,
        hideIdentifier: true,
        columns: {
          identifier: [0, 'id_part'],
          editable: [[1, 'nombreg'], [2, 'apellido1g'], [3, 'apellido2g'], [4, 'telg'],  [5, 'empresa'],
           [6, 'calle'],  [7, 'num'],  [8, 'escalera'],  [9, 'piso'],  [10, 'puerta'], [11, 'cp'],
            [12, 'localidad'],  [13, 'provinciag']]
        },
    });
});

DONDE ACTUALIZO LA BD ( editarCelda.php)

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
<?php
include('conexion.php');
 
$input = filter_input_array(INPUT_POST);
if ($input['action'] == 'edit') {
    $update_field='';
    if(isset($input['nombreg'])) {
        $update_field.= "nombreg='".$input['nombreg']."'";
    } else if(isset($input['apellido1g'])) {
        $update_field.= "apellido1g='".$input['apellido1g']."'";
    } else if(isset($input['apellido2g'])) {
        $update_field.= "apellido2g='".$input['apellido2g']."'";
    } else if(isset($input['telg'])) {
        $update_field.= "telg='".$input['telg']."'";
    } else if(isset($input['empresa'])) {
        $update_field.= "empresa='".$input['empresa']."'";
    } else if(isset($input['calle'])) {
        $update_field.= "calle='".$input['calle']."'";
    } else if(isset($input['num'])) {
        $update_field.= "num='".$input['num']."'";
    } else if(isset($input['escalera'])) {
        $update_field.= "escalera='".$input['escalera']."'";
    } else if(isset($input['piso'])) {
        $update_field.= "piso='".$input['piso']."'";
    } else if(isset($input['puerta'])) {
        $update_field.= "puerta='".$input['puerta']."'";
    } else if(isset($input['cp'])) {
        $update_field.= "cp='".$input['cp']."'";
    } else if(isset($input['localidad'])) {
        $update_field.= "localidad='".$input['localidad']."'";
    } else if(isset($input['provinciag'])) {
        $update_field.= "provinciag='".$input['provinciag']."'";
    }
 
    if($update_field && $input['id_part']) {
        $sql_query = "UPDATE ganadores SET $update_field WHERE id='" . $input['id_part'] . "'";
        $resultado= $conn->query($sql_query);
    }
}
 
?>
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
Imágen de perfil de italo_pm
Val: 920
Bronce
Ha mantenido su posición en PHP (en relación al último mes)
Gráfica de PHP

Campos editables con datos de la base de datos

Publicado por italo_pm (193 intervenciones) el 02/04/2019 13:38:08
Hola,

te hace ver algun error?

salud2
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar
Imágen de perfil de WllmCast
Val: 11
Ha aumentado su posición en 16 puestos en PHP (en relación al último mes)
Gráfica de PHP

Campos editables con datos de la base de datos

Publicado por WllmCast (6 intervenciones) el 02/04/2019 19:08:47
mi proyecto hace lo que usted necesita no se si lo puedas adaptar, lo siquiente es el php de administrador, es la tabla donde aparece la informacion, la actualizacion la hago en otro php que lo pondre luego de este
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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
<!DOCTYPE html>
 
<?php
 
session_start();
 
if (@!$_SESSION['user']) {
 
	header("Location:index.html");
 
}elseif ($_SESSION['rol']==2) {
 
	header("Location:index2.php");
 
}
 
?>
 
<html lang="en">
 
  <head>
 
    <meta charset="utf-8">
 
    <title>PLATAFORMA VIRTUAL APRENDE</title>
 
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
 
    <meta name="description" content="">
 
    <meta name="author" content="Joseph Godoy">
 
 
 
    <link href="bootstrap/css/bootstrap.min.css" rel="stylesheet"/>
 
 
 
    <link rel="shortcut icon" href="assets/ico/favicon.ico">
 
    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="assets/ico/apple-touch-icon-144-precomposed.png">
 
    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="assets/ico/apple-touch-icon-114-precomposed.png">
 
    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="assets/ico/apple-touch-icon-72-precomposed.png">
 
    <link rel="apple-touch-icon-precomposed" href="assets/ico/apple-touch-icon-57-precomposed.png">
 
  </head>
 
<body data-offset="40" background="images/fondotot.jpg" style="background-attachment: fixed">
 
 
 
<header class="header">
 
<div class="row">
 
	<?php
 
	include("include/cabecera.php");
 
	?>
 
</div>
 
</header>
 
 
 
  <!-- Navbar

    ================================================== -->
 
 
 
<div class="navbar">
 
  <div class="navbar-inner">
 
	<div class="container">
 
	  <div class="nav-collapse">
 
		<ul class="nav">
 
			<li class=""><a href="admin.php">ADMINISTRADOR DEL SITIO</a></li>
 
 
 
 
 
		</ul>
 
		<form action="#" class="navbar-search form-inline" style="margin-top:6px">
 
 
 
		</form>
 
		<ul class="nav pull-right">
 
		<li><a href="">Bienvenido <strong><?php echo $_SESSION['user'];?></strong> </a></li>
 
		<li><a href="">Cédula <strong><?php echo $_SESSION['cedula'];?></strong> </a></li>
 
		<li><a href="">Celular <strong><?php echo $_SESSION['celular'];?></strong> </a></li>
 
 
 
			   <li><a href="desconectar.php" class="btn-danger Estilo1"> CERRAR SESION </a></li>
 
 
<li><a href="excel.php" class="btn-success Estilo4"> DESCARGAR EXCEL </a></li>
 
<li><a href="https://docs.google.com/spreadsheets/d/1x7_vrqBnuDY2E51q5aGV5-bp-z3WVePVIrOgHLGD1KU/edit?usp=sharing" class="btn-primary">VERIFICAR PAGO</a></li>
 
		</ul>
 
	  </div><!-- /.nav-collapse -->
 
	</div>
 
  </div><!-- /navbar-inner -->
 
</div>
 
 
 
<!-- ======================================================================================================================== -->
 
<div class="row">
 
 
 
 
 
 
 
	<div class="span12">
 
 
 
		<div class="caption">
 
 
 
<!--///////////////////////////////////////////////////Empieza cuerpo del documento interno////////////////////////////////////////////-->
 
		<h2> Administración de usuarios registrados</h2>
 
		<div class="well well-small">
 
		<hr class="soft"/>
 
		<h4>Tabla de Usuarios</h4>
 
		<div class="row-fluid">
 
 
 
 
 
 
 
 
 
			<?php
 
 
 
				require("connect_db.php");
 
				$sql=("SELECT * FROM login");
 
 
 
//la variable  $mysqli viene de connect_db que lo traigo con el require("connect_db.php");
 
				$query=mysqli_query($mysqli,$sql);
 
 
 
				echo "<table border='1'; class='table table-hover';>";
 
					echo "<tr class='warning'>";
 
 
 
				     	echo "<td>Borrar</td>";
				     	echo "<td>Editar</td>";
 
 
 
						echo "<td>Id</td>";
 
						echo "<td>Usaurio</td>";
 
						echo "<td>Cédula</td>";
 
						echo "<td>Password</td>";
 
						echo "<td>Correo</td>";
 
						echo "<td>Password del administrador</td>";
 
						echo "<td>Celular</td>";
 
						echo "<td>País</td>";
 
						echo "<td>Departamento</td>";
 
						echo "<td>Ciudad</td>";
 
						echo "<td>Dirección</td>";
 
						echo "<td>Universidad</td>";
 
 
 
 
					echo "</tr>";
 
 
 
 
 
			?>
 
 
 
			<?php
 
				 while($arreglo=mysqli_fetch_array($query)){
 
				  	echo "<tr class='success'>";
 
 
 
 
						echo "<td><a href='admin.php?id=$arreglo[0]&idborrar=2'><img src='images/eliminar.png' class='img-rounded'/></a></td>";
						echo "<td><a href='actualizar.php?id=$arreglo[0]'><img src='images/actualizar.gif' class='img-rounded'></td>";
 
				    	echo "<td>$arreglo[0]</td>";
 
				    	echo "<td>$arreglo[1]</td>";
 
				    	echo "<td>$arreglo[2]</td>";
 
				    	echo "<td>$arreglo[3]</td>";
 
				    	echo "<td>$arreglo[4]</td>";
 
						echo "<td>$arreglo[5]</td>";
 
						echo "<td>$arreglo[6]</td>";
 
 
 
 
					echo "</tr>";
 
				}
 
 
 
				echo "</table>";
 
 
 
					extract($_GET);
 
					if(@$idborrar==2){
 
 
 
						$sqlborrar="DELETE FROM login WHERE id=$id";
 
						$resborrar=mysqli_query($mysqli,$sqlborrar);
 
						echo '<script>alert("REGISTRO ELIMINADO")</script> ';
 
						//header('Location: proyectos.php');
 
						echo "<script>location.href='admin.php'</script>";
 
					}
 
 
 
			?>
 
 
 
 
 
 
 
 
 
 
 
 
 
		<div class="span8">
 
 
 
		</div>
 
		</div>
 
		<br/>
 
 
 
 
 
 
 
		<!--EMPIEZA DESLIZABLE-->
 
 
 
		 <!--TERMINA DESLIZABLE-->
 
 
 
 
 
 
 
 
 
 
 
		</div>
 
 
 
 
 
 
 
 
 
 
 
 
 
<!--///////////////////////////////////////////////////Termina cuerpo del documento interno////////////////////////////////////////////-->
 
</div>
 
 
 
	</div>
 
</div>
 
<!-- Footer

      ================================================== -->
 
<hr class="soften"/>
 
<footer class="footer">
 
 
 
<hr class="soften"/>
 
<p>&copy;  <br/><br/></p>
 
 </footer>
 
<!-- /container -->
 
 
 
    <!-- Le javascript

    ================================================== -->
 
    <!-- Placed at the end of the document so the pages load faster -->
 
    <script src="bootstrap/js/jquery-1.8.3.min.js"></script>
 
    <script src="bootstrap/js/bootstrap.min.js"></script>
 
	</style>
 
  </body>
 
</html>


actualizacion en bse de datos

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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
<!DOCTYPE html>
 
<?php
 
session_start();
 
if (@!$_SESSION['user']) {
 
	header("Location:index.html");
 
}
 
?>
 
<html lang="en">
 
  <head>
 
    <meta charset="utf-8">
 
    <title>Proyecto Academias</title>
 
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
 
    <meta name="description" content="">
 
    <meta name="author" content="Joseph Godoy">
 
 
 
    <link href="bootstrap/css/bootstrap.min.css" rel="stylesheet"/>
 
 
 
    <link rel="shortcut icon" href="assets/ico/favicon.ico">
 
    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="assets/ico/apple-touch-icon-144-precomposed.png">
 
    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="assets/ico/apple-touch-icon-114-precomposed.png">
 
    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="assets/ico/apple-touch-icon-72-precomposed.png">
 
    <link rel="apple-touch-icon-precomposed" href="assets/ico/apple-touch-icon-57-precomposed.png">
 
  </head>
 
<body data-offset="40" background="images/fondotot.jpg" style="background-attachment: fixed">
 
<div class="container">
 
<header class="header">
 
<div class="row">
 
	<?php
 
	include("include/cabecera.php");
 
	?>
 
</div>
 
</header>
 
 
 
  <!-- Navbar

    ================================================== -->
 
 
 
 
 
<div class="navbar">
 
  <div class="navbar-inner">
 
	<div class="container">
 
	  <div class="nav-collapse">
 
		<ul class="nav">
 
			<li class=""><a href="admin.php">ADMINISTRADOR DEL SITIO</a></li>
 
			<li><a href="">Bienvenido <strong><?php echo $_SESSION['user'];?></strong> </a></li>
 
            <li><a href="desconectar.php"> Cerrar Cesión </a></li>
 
		</ul>
 
	  </div><!-- /.nav-collapse -->
 
	</div>
 
  </div><!-- /navbar-inner -->
 
</div>
 
 
 
<!-- ======================================================================================================================== -->
 
<div class="row">
 
 
 
 
 
 
 
	<div class="span12">
 
 
 
		<div class="caption">
 
 
 
<!--///////////////////////////////////////////////////Empieza cuerpo del documento interno////////////////////////////////////////////-->
 
		<h2> Administración de usuarios registrados</h2>
 
		<div class="well well-small">
 
		<hr class="soft"/>
 
		<h4>Edición de usuarios</h4>
 
		<h4>PRECIOS Y FECHAS MODALIDADES</h4>
 
		<div class="row-fluid">
 
 
 
		<?php
 
		extract($_GET);
 
		require("connect_db.php");
 
 
 
		$sql="SELECT * FROM login WHERE id=$id";
 
	//la variable  $mysqli viene de connect_db que lo traigo con el require("connect_db.php");
 
		$ressql=mysqli_query($mysqli,$sql);
 
		while ($row=mysqli_fetch_row ($ressql)){
 
		    		$id=$row[0];
 
		    	$user=$row[1];
 
				$cedula=$row[2];
 
		    	$pass=$row[3];
 
		    	$email=$row[4];
 
		    	$pasadmin=$row[5];
 
				$celular=$row[6];
 
 
 
 
 
		    }
 
 
 
 
 
 
 
		?>
 
 
 
		<form action="ejecutaactualizar.php" method="post">
 
				Id ---------------------------------
				Usuario----------------------------
				Cédula---------------------------
				Pass usuario---------------------
				Correo usuario -----------------
				Password administrador <br>
 
				<input type="text" name="id" value= "<?php echo $id ?>" readonly="readonly">
 
				<input type="text" name="user" value="<?php echo $user?>">
 
				<input type="text" name="cedula" value="<?php echo $cedula?>">
 
				<input type="text" name="pass" value="<?php echo $pass?>">
 
			    <input type="text" name="email" value="<?php echo $email?>">
 
				<input type="text" name="pasadmin" value="<?php echo $pasadmin?>">
 
				<br>
 
				Celular-----------------------------
				País-------------------------------
				Departamento---------------------
				Ciudad---------------------------
				Direccion-----------------------
				Universidad
				<br>
 
				<input type="text" name="celular" value="<?php echo $celular?>">
 
				 <input type="text" name="pais" value="<?php echo $pais?>">
 
				 <input type="text" name="departamento" value="<?php echo $departamento?>">
 
				 <input type="text" name="ciudad" value="<?php echo $ciudad?>">
 
				 <input type="text" name="direccion" value="<?php echo $direccion?>">
 
				 <input type="text" name="universidad" value="<?php echo $universidad?>">
 
				<br>
 
 
 
 
				<br>
 
				<input type="submit" value="Guardar" class="btn btn-success btn-primary">
 
			</form>
 
 
 
 
 
 
 
 
 
		<div class="span8">
 
 
 
		</div>
 
		</div>
 
		<br/>
 
 
 
 
 
 
 
		<!--EMPIEZA DESLIZABLE-->
 
 
 
		 <!--TERMINA DESLIZABLE-->
 
 
 
 
 
 
 
 
 
 
 
		</div>
 
 
 
 
 
 
 
 
 
 
 
 
 
<!--///////////////////////////////////////////////////Termina cuerpo del documento interno////////////////////////////////////////////-->
 
</div>
 
 
 
	</div>
 
</div>
 
<!-- Footer

      ================================================== -->
 
<hr class="soften"/>
 
<footer class="footer">
 
 
 
<hr class="soften"/>
 
<p>&copy;  <br/><br/></p>
 
 </footer>
 
</div><!-- /container -->
 
 
 
    <!-- Le javascript

    ================================================== -->
 
    <!-- Placed at the end of the document so the pages load faster -->
 
    <script src="bootstrap/js/jquery-1.8.3.min.js"></script>
 
    <script src="bootstrap/js/bootstrap.min.js"></script>
 
	</style>
 
  </body>
 
</html>
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar
Imágen de perfil de Daniel
Val: 5
Ha aumentado su posición en 27 puestos en PHP (en relación al último mes)
Gráfica de PHP

Campos editables con datos de la base de datos

Publicado por Daniel (4 intervenciones) el 05/04/2019 12:59:07
Muchas gracias, le echare un vistazo cuando tengo un rato libre, porque ahora mi error es que no me introduce los datos en la BD y parece que tiene buena pinta tu codigo.

Por si alguien ve este Post, voy a explicar la solución que encontré a mi error, es bastante sencilla y muy simple

Mi error se solucionaba sencillamente descargando el plugin JQuery-tabledit, ya que por lo visto el que había puesto no hacia la función correctamente.
Tan sencillo como ir a la pagina https://markcell.github.io/jquery-tabledit/ , descargar y añadirlo a vuestra carpeta y meterlo en el head del codigo.
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar