Parser un tableau sous simple_html_dom

Répondre


Cette question est un moyen d’empêcher des soumissions automatisées de formulaires par des robots.
Smileys
:D :) :( :o :shock: :? 8-) :lol: :x :P :oops: :cry: :evil: :twisted: :roll: :wink: :!: :?: :idea: :arrow: :| :mrgreen: =D> #-o =P~ :^o :non: :priere: 8-|
Voir plus de smileys
  Revue du sujet
 

  Étendre la vue Revue du sujet : Parser un tableau sous simple_html_dom

Re: Parser un tableau sous simple_html_dom

par Aureusms » 13 avr. 2016, 13:28

Peux-tu simplement utiliser phpMyAdmin ?

Parser un tableau sous simple_html_dom

par azizss » 12 avr. 2016, 16:17

Bonjour tous le monde,

je recherche de l’aide, je parse des informations.
Mais mon problème est que j’essaie de récupérer des information qui ce trouve dans un tableau et les enregistre dans une BDD MySQL.

Prix
Nom du produit
Type produit
Lieux
Nombre de produit
Taille du produit
Réf


Ce qui donne

200€
BD
Voiture
France
10
100 m2
DBN34Z


Le code est

Code : Tout sélectionner

<table class="table table-hover table-bordered"> <tbody> <tr> <th nowrap>Prix</th> <td width="50%">200€</td> <th nowrap>Nom du produit</th> <td width="50%">BD</td> </tr> <tr> <th nowrap>Type produit</th> <td width="50%">Voiture</td> <th nowrap>Lieux</th> <td width="50%">France</td> </tr> <tr> <th nowrap>Nombre de produit</th> <td width="50%">10</td> <th nowrap>Taille du produit</th> <td width="50%">-100 m2</td> </tr> <tr> <th nowrap>Réf</th> <td width="50%">DBN34Z</td> </tr> </tbody> </table>
Cela change suivant le produit :

Prix
Nom du produit
Référence de vente
Nombre de produit
Réf

Ce qui donne

20€
CF
velo22
100
DMP45D

Le code est

Code : Tout sélectionner

<table class="table"> <tbody> <tr> <th nowrap>Prix</th> <td width="50%">20€</td> <th nowrap>Nom du produit</th> <td width="50%">CF</td> </tr> <tr> <th nowrap>Référence de vente</th> <td width="50%">velo22</td> <th nowrap>Nombre de produit</th> <td width="50%">100</td> </tr> <tr> <th nowrap>Réf</th> <td width="50%">DMP45D</td> </tr> </tbody> </table>
Comment puis-je faire.
Merci de votre aide.