0byt3m1n1
Path:
/
home
/
kassiope
/
www
/
modules
/
affiliation
/
modeles
/
[
Home
]
File: affiliation_produit_details.php
<?php #- Détermination du prix $prix = $prod['prix'] * (1-$prod["promotion"]/100); echo "<link rel=\"stylesheet\" href=\"". $wwwroot . "/lib/css/style.css\" type=\"text/css\" />"; echo "<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\" height=\"100%\" align=\"center\" style=\"border:1px solid #000;\" bgcolor=\"white\">"; echo "<tr><td align=\"center\" class=\"titre\"><b>" .html_entity_decode($prod['nom']) . "</b></td></tr>"; echo "<tr><td align=\"center\" class=\"normal\">"; if (!empty($prod['image1'])) { echo "<a href=\"".$wwwroot . "/achat/produit_details.php?id=" . $id . "&affilie=" . $affilie . "\" target=\"_blank\">"; echo "<img src=\"" . $wwwroot . "/administrer/upload/" . $prod['image1'] ."\" border=\"0\" width=\"100\" /> </a>"; } echo "</td></tr>"; echo "<tr><td align=\"center\" class=\"normal\"><font color=\"#ff0000\">" . fprix($prix). " €</font></td></tr>"; echo "<tr><td align=\"center\" class=\"normal\"><a class=\"normal\" href=\"" . $wwwroot . "/achat/produit_details.php?id=" . $id . "&affilie=" . $affilie . "\" target=\"_blank\">- Commander -</a></td></tr>"; echo "</td></tr></table>"; ?>