<?php
$titre = ( $_POST['titre'] );
$url = ( $_POST['url'] );
?>
<b>Voici les informations que vous nous avez envoyé.<br><br></b>
<b><u>Titre du site web ::</b></u> <i><?php echo $titre; ?></i><br>
<b><u>Site web ::</b></u> <i><a href="<?php echo $url; ?>" class="lien"><?php echo $url; ?></a></i><br>
<?php
require("config.php");
mysql_connect("$host", "$user", "$mdp");
mysql_select_db("$data");
$sql = ("insert into br_part values ('','$titre','$url')") or die(mysql_error());
$sql_bis = mysql_query($sql) or die(mysql_error());
mysql_close();
?>
<br><br>
<a href="lpart.php" class="lien"> >> Liste des Partenaires.</a>