Junge junge, lern doch mal Suchmaschinen zu benutzen.
Im Quelltext der Datei ganz normale Links setzen:
Code:
[
url="ProInfo.php?link=wurst"]wurst[/
url]
[
url="ProInfo.php?link=butter"]butter[/
url]
Auf der ProInfo-Seite dann halt abfragen welcher Wert bei link steht:
Code:
<?php
if (isset($_GET['link']))
{
$product = $_GET['link'] }
}
?>
....
<
html>
<head>
<body>
Produkt: <?php echo $product; ?>
</body>
<
html>