Bonjour à tous
Mon code HTML qui fonctionne :
Code HTML : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14 <html> <body> <tr> <td><?php echo $var0; ?></td> <td> <?php $url_pdf = "http://locahost/monsite.fr/pdf/".$var1."/".$var2.".pdf"; echo "<a href=".$url_pdf." >".$var3."</a>"; ?> </td> </tr> </body> </html>
Le code PHP que je cherche à écrire:
La ligne 5 produit affiche le résultat attendu.
Code PHP : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12 <?php $res[] = <<<HTML <tr> <td>{$var0}</td> <td> $url_pdf = "http://locahost/monsite.fr/pdf/".$var1."/".$var2.".pdf"; <a href=".$url_pdf." >".$var3."</a>; </td> </tr> HTML; ?>
La console me retourne
Parse error: syntax error, unexpected '' (T_ENCAPSED_AND_WHITESPACE), expecting '-' or identifier (T_STRING) or variable (T_VARIABLE) or number (T_NUM_STRING) in /htdocs/monsite.fr/page2.php on line 7Comment écrire les lignes 7 et 8?
Merci de vos éclairages!
Partager