i have a XML file and need the data in a database after i checked them. so i display the data in a table and after that i try to write the data in a database. but with my code i get only the first set of data from the xml in my database. but there are at least 20 or more in each xml. How can i write all data in the database?
with this code i display the data from the xml
<form action="insert.php" method="post" />
<table id="Wagen">
<thead>
<tr>
<th>Typ</th>
<th>Kennzeichen</th>
<th>Fahrer</th>
</tr>
</thead>
<tbody>
<?php
$url = ('./cars.xml');
$xml = simplexml_load_file( urlencode($url), null, true);
foreach ( $xml->car as $cars ) :?>
<tr>
<td><input type="hidden" name="name" value="<?php echo $cars->typ; ?>"><?php echo $cars->typ; ?></td>
<td><input type="hidden" name="kfz-nr" value="<?php echo $cars->plate; ?>"><?php echo $cars->plate; ?></td>
<td><input type="hidden" name="fahrer" value="<?php echo $cars->driver; ?>"><?php echo $cars->driver; ?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<input type="submit" name="senden" value="XML speichern" />
</form>
and with this code i try to write the data in the database. but i get only the first row from my table. not the others.
<?php
error_reporting(E_ALL);
$MYSQL_HOST = 'localhost';
$MYSQL_USER = 'username';
$MYSQL_PASS = 'password';
$MYSQL_DATA = 'database';
$connid = @mysql_connect($MYSQL_HOST, $MYSQL_USER, $MYSQL_PASS) OR die("Error: ".mysql_error());
mysql_select_db($MYSQL_DATA) OR die("Error: ".mysql_error());
if (isset($_POST['senden']))
{
$sql =
"INSERT INTO myTable
(fahrzeug,
kennzeichen,
fahrer
)
VALUES
('".mysql_real_escape_string(trim($_POST['name']))."',
'".mysql_real_escape_string(trim($_POST['kfz-nr']))."',
'".mysql_real_escape_string(trim($_POST['fahrer']))."');
mysql_query($sql) OR die("<pre>\n".$sql."</pre>\n".mysql_error());
mysql_query("SET NAMES 'utf8'");
}
?>
i hope some one can help me. :)