Was muss ich ändern, dass mit Klick auf den Link in der URL die Firma_ID des jeweiligen Datensatzes übergeben wird.
Danke und Gruss von einem php-Anfänger
Danke und Gruss von einem php-Anfänger
PHP-Code:
$result = mysql_query("SELECT * FROM Firma")
or die(mysql_error());
$Firma_ID= Firma_ID;
echo "<img src='img/firma.gif' width='250' height='24'>";
echo "<table width='100%' border='1'>";
echo "<tr><th width='20'></th> <th>Firma 1</th> <th>Strasse</th><th>PLZ</th>
<th>Ort</th><th>Telefon</th><th>Telefax</th> </tr>";
// keeps getting the next row until there are no more to get
while($row = mysql_fetch_array( $result )) {
// Print out the contents of each row into a table
echo "<tr><td>";
echo "<img src='img/email.gif'>";
echo "</td><td>";
echo "<a href='kontakt.php?Firma_ID='>";
echo $row['Firma_1'];
echo "</a>";
echo "</td><td>";
echo $row['Adresse_1'];
echo "</td><td>";
echo $row['PLZ'];
echo "</td><td>";
echo $row['Ort'];
echo "</td><td>";
echo $row['Telefon'];
echo "</td><td>";
echo $row['Telefax'];
echo "</td></tr>";
}
echo "</table>";
?>
Kommentar