Bien le bonsoir à tous et à toutes

je viens poster une petite question car j'ai un problème,
J'ai une page nommée concours qui affiche les résultats contenus dans une table nommée formtest1

Les Premiers résultats s'affichent bien (nom , prenom et les banalités)
Mais après je dois afficher un lien qui va ver une photo, mais l'url de la photo est stockée dans la bdd

alors j'ai écrit un bout de code comme ça :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
echo "<td width=\"258\" align=\"left\" valign=\"top\" bgcolor=\"#e8eff6\">"<a href="http://www.*****.com/content_fr/".$tableau["url_image1"].">ici</a></td> \n";
Mais ma page me retourne une erreur comme ceci :
Parse error: syntax error, unexpected T_STRING, expecting ',' or ';' in /home.10.4/*****/www/_admin_/concourskara.php on line 26
Pour que vous compreniez bien mon problème je poste mon code entier de la page (je vous rassure il n'est pas long)

Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
<?
$mabasededonnee="******";
$connection = mysql_connect("*****-1","*******","*******");
if ( ! $connection )
die ("connection impossible");
mysql_select_db('***') or die ("pas de connection");
 
// requête
$requete = "SELECT nomcrea,nom,prenom,adresse,responsable,cp,ville,pays,tel,fax,site,mail,visite,descritpif,types,exposer,url_image1,url_image2,url_image3,url_image4,url_image5 FROM formtest1 ORDER BY id";
$envoi = mysql_query($requete);
 
// début du tableau ( hors boucle )
echo "<table width=\"300\" border=\"0\" align=\"left\" cellpadding=\"0\" cellspacing=\"2\"> \n";
 
 
// début de la boucle
echo "Les Inscrits Sont :";
while($tableau = mysql_fetch_array($envoi)) {
echo "<tr> \n";
echo "<td width=\"258\" align=\"left\" valign=\"top\" bgcolor=\"#e8eff6\">".$tableau["nom"]."</td> \n";
echo "<td width=\"258\" align=\"left\" valign=\"top\" bgcolor=\"#e8eff6\">".$tableau["prenom"]."</td> \n";
echo "<td width=\"258\" align=\"left\" valign=\"top\" bgcolor=\"#e8eff6\">".$tableau["tel"]."</td> \n";
echo "<td width=\"258\" align=\"left\" valign=\"top\" bgcolor=\"#e8eff6\">".$tableau["mail"]."</td> \n";
echo "<td width=\"258\" align=\"left\" valign=\"top\" bgcolor=\"#e8eff6\">".$tableau["visite"]."</td> \n";
echo "<td width=\"258\" align=\"left\" valign=\"top\" bgcolor=\"#e8eff6\">".$tableau["descriptif"]."</td> \n";
echo "<td width=\"258\" align=\"left\" valign=\"top\" bgcolor=\"#e8eff6\">"<a href="http://www.*****.com/content_fr/".$tableau["url_image1"].">ici</a></td> \n";
echo "</tr> \n";
}
 
// fin du tableau html ( hors boucle )
echo "</table> \n";
?>
 
 
<a href="http://www.*****.com/content_fr/">ici</a>
je pense et j'espère que quelqu'un pourra m'aider car je dois dire que c'est assez urgent lol ,

Merci d'avance lol