Syntaxe html et php
Résolu/Fermé
nanaval31
Messages postés
20
Date d'inscription
jeudi 12 juin 2014
Statut
Membre
Dernière intervention
23 juin 2014
-
16 juin 2014 à 09:44
laurent74000 Messages postés 562 Date d'inscription mercredi 18 janvier 2012 Statut Membre Dernière intervention 26 mai 2015 - 16 juin 2014 à 14:56
laurent74000 Messages postés 562 Date d'inscription mercredi 18 janvier 2012 Statut Membre Dernière intervention 26 mai 2015 - 16 juin 2014 à 14:56
A voir également:
- Syntaxe html et php
- Editeur html - Télécharger - HTML
- Easy php - Télécharger - Divers Web & Internet
- &Nbsp html ✓ - Forum Webmastering
- Retour a la ligne php ✓ - Forum PHP
- [HTML] - á et les autres - Forum HTML
2 réponses
nanaval31
Messages postés
20
Date d'inscription
jeudi 12 juin 2014
Statut
Membre
Dernière intervention
23 juin 2014
16 juin 2014 à 09:49
16 juin 2014 à 09:49
Quand je met les balises html entre ''
ça donne :
Et j'ai ce message d'erreur : Parse error: syntax error, unexpected ''<a href="capvern.php" >'' (T_CONSTANT_ENCAPSED_STRING) in C:\wamp\www\projet_ot\listitemcapvern.php on line 46
Pouvez vous me dire ce que je dois modifier ?
Merci à vous
ça donne :
<ul> <?php $fichier = 'http://wcf.tourinsoft.com/Syndication/cdt65/b1155573-8443-49fb-a3d0-bb05526278e6/Objects?$filter=ListingCOMMUNE eq\'CAPVERN\''; $dom = new DOMDocument('utf-8'); if (!$dom->load($fichier)) { die('Impossible de charger le fichier XML'); } $itemList = $dom->getElementsByTagName('properties'); foreach ($itemList as $item2) { $nom = $item2->getElementsByTagName('ListingCOMMUNE'); $nom1 = $nom->item(0)->nodeValue; $photo = $item2->getElementsByTagName('ListingPHOTOPRINCIPALE'); $photo1 = $photo->item(0)->nodeValue; $photo1 = str_replace('URL : ', '', $photo1); $photo1 = str_replace('Libellé :', '', $photo1); $description = $item2->getElementsByTagName('ListingDESCRIPTIONCOMMERCIALE'); $description1 = $description->item(0)->nodeValue; $location = $item2->getElementsByTagName('ListingRESERVATION'); $location1 = $location->item(0)->nodeValue; } '<li class="itmList">' '<a href="capvern.php" >' '<div class="placeholder">' echo $photo1; //echo strlen($photo1); if(strlen($photo1)==0) { $photo1= '<img src="imgreplace.png">'; echo $photo1; } '</div>' '<h2>' echo $nom1; '</h2>' '<p class="description">' echo $description1; '</p>' '<p class="location">'Location : echo $location1; '</p>' '</a>' '</li>' ?> </ul>
Et j'ai ce message d'erreur : Parse error: syntax error, unexpected ''<a href="capvern.php" >'' (T_CONSTANT_ENCAPSED_STRING) in C:\wamp\www\projet_ot\listitemcapvern.php on line 46
Pouvez vous me dire ce que je dois modifier ?
Merci à vous
reaverlost
Messages postés
150
Date d'inscription
jeudi 27 mai 2010
Statut
Membre
Dernière intervention
14 mai 2018
21
16 juin 2014 à 14:51
16 juin 2014 à 14:51
Salut,
Rajoutes des echo devant tes balises HTML :
Exemple : echo '<li class="itmList">';
Rajoutes des echo devant tes balises HTML :
Exemple : echo '<li class="itmList">';
16 juin 2014 à 14:56