Pb php-javascript
Résolu/Fermé
A voir également:
- Pb php-javascript
- Telecharger javascript - Télécharger - Langages
- Easy php - Télécharger - Divers Web & Internet
- Get_magic_quotes_gpc php 8 ✓ - Forum PHP
- Node.js javascript runtime virus ✓ - Forum Virus
- Bouton php - Forum PHP
1 réponse
MysticSquall
Messages postés
401
Date d'inscription
lundi 4 juillet 2005
Statut
Membre
Dernière intervention
7 octobre 2011
27
14 janv. 2010 à 10:20
14 janv. 2010 à 10:20
les "" vont tout te mettre en chaîne alors que les '' vont tenir compte des variables php. tu trouvera plein de tuto la dessus sur internet
Pour ce qui est de ton probleme,
echo "<td class='".$class."'>
<a href='javascript:OuvrirFenetre('popup_planning.php?refer=planning.php','popup','width=300,height=250')'> </a>
</td>";
Si sa ne marche pas, passe en HTML
<td class='<?php echo $class ?>'>
<a href="javascript:OuvrirFenetre('popup_planning.php?refer=planning.php','popup','width=300,height=250')"> </a>
</td>
Moi quand je me prend la tête dans un sens, j'essaye dans l'autre
Pour ce qui est de ton probleme,
echo "<td class='".$class."'>
<a href='javascript:OuvrirFenetre('popup_planning.php?refer=planning.php','popup','width=300,height=250')'> </a>
</td>";
Si sa ne marche pas, passe en HTML
<td class='<?php echo $class ?>'>
<a href="javascript:OuvrirFenetre('popup_planning.php?refer=planning.php','popup','width=300,height=250')"> </a>
</td>
Moi quand je me prend la tête dans un sens, j'essaye dans l'autre
14 janv. 2010 à 10:22
Merci !