1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
| <?php
$cache = isset($_GET['surligne']);
if ($cache) {
ob_start();
}
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<script language="JavaScript" type="text/JavaScript">
if (document.getElementById("surligne").value == '') alert('Remplissez le champ');
</script>
</head>
<body BGCOLOR=#FFFFFF LEFTMARGIN=0 TOPMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0 style="color:000000" background="../images/bg.gif">
<br>
<center>
<table bgcolor='white' style='border:1px dashed black' width='500'><tr><td>
<center>
<div style="padding:10;padding-left:20;padding-right:20;color:000000;padding-bottom:0" class="tah11">
<hr style="height: 1px;margin: 3;padding: 0;color: #000000;background-color: #000000;border: 0;">
<form action="<?php echo $doc_cour ?>">
<font size=3><input id="surligne" name="surligne" type="text" size="30" value="" class="inputbox"></font>
<input type="submit" value="Rechercher" name="surligne" id="surligne" class="inputbox">
</form>
<table style='border:1px dashed black' width='400'>
<tr><td class='faqa'><a href='#1' class='menu3'><strong>- Je ne voit pas les animations Flash</strong></a></td></tr>
<tr><td class='faqb'><a href='#2' class='menu3'><strong>- Je voudrais envoyer un devis, mais je n'y arrive pas</strong></a></td></tr>
<tr><td class='faqa'><a href='#3' class='menu3'><strong>- J'ai envoyé un mél/devis, mais je n'ai pas eu de réponse</strong></a></td></tr>
<tr><td class='faqb'><a href='#4' class='menu3'><strong>- Comment gagner des sous ?</strong></a></td></tr>
</table>
<hr style="height: 1px;margin: 3;padding: 0;color: #000000;background-color: #000000;border: 0;">
<br>
<table style='border:1px dashed black' width='450'>
<tr><td class='faqa'><a href='#a1' class='menu3' name='1'><strong><center>Je ne voit pas les animations Flash</center></strong></a></td></tr>
<tr><td class='faqa'><font class="tah11">Il suffit d'installer Adobe Flash Player 9, en vous rendant à cette adresse : <a class="menu2" href="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash&promoid=BIOW" target="_blank">http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash&promoid=BIOW</a>.</font></td></tr>
</table>
<br>
<table style='border:1px dashed black' width='450'>
<tr><td class='faqb'><a href='#a2' class='menu3' name='2'><strong><center>Je voudrais envoyer un devis, mais je n'y arrive pas</center></strong></a></td></tr>
<tr><td class='faqb'><font class="tah11">Rendez-vous sur la page 'Inscription', inscrivez vous, et après cela, allez à la page 'Devis' et remplissez le formulaire.</font></td></tr>
</table>
<br>
<table style='border:1px dashed black' width='450'>
<tr><td class='faqa'><a href='#a1' class='menu3' name='3'><strong><center>J'ai envoyé un mél/devis, mais je n'ai pas eu de réponse</center></strong></a></td></tr>
<tr><td class='faqa'><font class="tah11">Ne vous inquitez pas, une réponse vous sera apportée quoi qu'il arrive et dans les plus brefs délais.</font></td></tr>
</table>
</center>
</body></html>
<?php
if ($cache) {
$out = ob_get_clean();
echo preg_replace('.\b(' . preg_quote($_GET['surligne']) . ')\b.', '<span style="color: red"><strong>$1</strong></span>', $out);
}
?> |