Problème avec les côtes (") et (')
Résolu/Fermé
djimson
Messages postés
211
Date d'inscription
lundi 6 novembre 2006
Statut
Membre
Dernière intervention
13 février 2015
-
27 juin 2009 à 19:41
Dalida Messages postés 6728 Date d'inscription mardi 14 mai 2002 Statut Contributeur Dernière intervention 11 janvier 2016 - 27 juin 2009 à 22:36
Dalida Messages postés 6728 Date d'inscription mardi 14 mai 2002 Statut Contributeur Dernière intervention 11 janvier 2016 - 27 juin 2009 à 22:36
A voir également:
- Problème avec les côtes (") et (')
- Double cotes ✓ - Forum Perl
- Souris avec 2 bouton sur le côté ✓ - Forum souris / Touchpad
- Comment supprimer une conversation snap des deux côtés - Forum Snapchat
- Dans le document à télécharger, placez les 2 images côte à côte et donnez-leur la même hauteur. marie a gagné un lot à l’un des trois tirages. qu’a-t-elle gagné ? ✓ - Forum Excel
- Alignez des deux côtés le texte du courrier. ✓ - Forum Word
1 réponse
Dalida
Messages postés
6728
Date d'inscription
mardi 14 mai 2002
Statut
Contributeur
Dernière intervention
11 janvier 2016
922
27 juin 2009 à 22:36
27 juin 2009 à 22:36
salut,
pour utiliser un tableau entre les guillemets il faut l'encadrer avec des accolades :
ou tu fais tout avec des apostrophes :
+ https://www.php.net/manual/fr/language.types.string.php#language.types.string.syntax.double
+ https://www.php.net/manual/fr/language.types.string.php#language.types.string.parsing
pour utiliser un tableau entre les guillemets il faut l'encadrer avec des accolades :
<?php echo"<table border=2> <tr> <td width=15%>".$resultat['date_annonce']."</td> <td width=35%>".$resultat['recruteur']."</td> <td width=30%> <a href=\"emplois.php?id={$resultat['id']}\" onclick=\"window.open('emplois.php?id={$resultat['id']}','wclose','width=600,height=700,toolbar=no,status=no,left=20,top=30,resizable=no'); return false;\">" .$resultat['poste'].'</a>'" <td width=20%>".$resultat['lieu']."</td> </tr> </table>"; ?>
ou tu fais tout avec des apostrophes :
<?php echo'<table border=2> <tr> <td width=15%>'.$resultat['date_annonce'].'</td> <td width=35%>'.$resultat['recruteur'].'</td> <td width=30%> <a href="emplois.php?id='.$resultat['id'].'" onclick="window.open(\'emplois.php?id='.$resultat['id'].'\',\'wclose\',\'width=600,height=700,toolbar=no,status=no,left=20,top=30,resizable=no\'); return false;">'.$resultat['poste'].'</a> <td width=20%>'.$resultat['lieu'].'</td> </tr> </table>'; ?>
+ https://www.php.net/manual/fr/language.types.string.php#language.types.string.syntax.double
+ https://www.php.net/manual/fr/language.types.string.php#language.types.string.parsing