Lo que quiero hacer es lebantar la info de un archivo en input's, editar algun valor y guardar con los nuevos valores, pero no logro conseguirlo.
db.php
dato1#dato2#dato3#dato4#dato5#dato6#dato7#dato8
dato1#dato2#dato3#dato4#dato5#dato6#dato7#dato8
dato1#dato2#dato3#dato4#dato5#dato6#dato7#dato8
dato1#dato2#dato3#dato4#dato5#dato6#dato7#dato8
(los datos no son mayormente iguales)
Con esto lo veo, en el form:
Código PHP:
<form action="editar.php" method="post" name="form" target="_self" id="form" style="margin:0">
<table>
<thead>
<tr>
<th align='center'>dato1</th>
<th align='center'>dato2</th>
<th align='center'>dato3</th>
<th align='center'>dato4</th>
<th align='center'>dato5</th>
<th align='center'>dato6</th>
<th align='center'>dato7</th>
<th align='center'>dato8</th>
</tr>
<?
$lines = file('db.php');
foreach ($lines as $line_num => $line) {
$datos = explode("#", $line);
echo"<tr>";
echo"<td><input name='00' value='$datos[0]' type='text' size='12' maxlength='10' /></td>";
echo"<td><input name='01' value='$datos[1]' type='text' size='12' maxlength='10' /></td>";
echo"<td><input name='02' value='$datos[2]' type='text' size='12' maxlength='10' /></td>";
echo"<td><input name='03' value='$datos[3]' type='text' size='12' maxlength='10' /></td>";
echo"<td><input name='04' value='$datos[4]' type='text' size='12' maxlength='10' /></td>";
echo"<td><input name='05' value='$datos[5]' type='text' size='12' maxlength='10' /></td>";
echo"<td><input name='06' value='$datos[6]' type='text' size='12' maxlength='10' /></td>";
echo"<td><input name='07' value='$datos[7]' type='text' size='12' maxlength='10' /></td>";
echo"<td><input name='08' value='$datos[8]' type='text' size='12' maxlength='10' /></td>";
echo"</tr>";
}
?>
</tbody>
</table>
<input type="submit" name="enviar" value="GUARDAR" />
</form>
</body>
</html>
Recurro a ustedes por que ya no se como hacerlo. Gracias de antemano.