Parser prochain match HANDBALL

html = file_get_html('http://www.ff-handball.org//competitions/championnats-departementaux/21-comite-de-la-cote-dor.html?tx_obladygesthand_pi1%5Bsaison_id%5D=13&tx_obladygesthand_pi1%5Bcompetition_id%5D=8141&tx_obladygesthand_pi1%5Bphase_id%5D=20644&tx_obladygesthand_pi1%5Bgroupe_id%5D=35816&tx_obladygesthand_pi1%5Bmode%5D=single_phase&cHash=48464cb61ad0c582a2e05a54cb5f049b'); foreach ($html-> find('.res') as $match) { foreach ($match-> find('.date') as $liste_date) { $liste_date_traiter_1 = explode(" ", $liste_date); $liste_date_traiter

0
Laravel 5 DebugBar

injecté dans l'*HTML* mais rien n'est afficher dans la page voici le code HTML ```html jQuery.noConflict(true); SELECT * only if you need all columns from tableThe SELECT statement has no WHERE ``` PS: la console de **Chrome** affiche une erreur : ``` Uncaught SyntaxError: Unexpected token ILLEGAL ```

2
Formulaire de contact récalcitrant

HTML et PHP concerné. Je vous remercie par avance pour l'aide que vous saurez m'apporter

5
Integration de bootstrap dans cakephp

Html->meta('icon'); echo $this->Html->css( array( //'bootstrap.min', 'bootstrap' //, //'docs' //, //'font-awesome' //, //'style' //, //'cake.generic', //'signin' ) ); echo $this->Html->script( array( 'http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js', 'bootstrap.min', ), array('block' => 'scriptBottom') ); ?> body { padding-top: 40px; padding-bottom: 40px; background-color: #f5f5f5; } .form-signin { max-width: 300px; padding: 19px 29px 29px; margin: 0 auto 20px; background-color: #fff; border: 1px solid #e5e5e5; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.05); -moz-box-shadow: 0 1px 2px rgba(0,0,0,.05); box-shadow: 0 1px 2px rgba(0,0,0,.05); } .form-signin .form-signin-heading, .form-signin .checkbox { margin-bottom: 10px; } .form-signin input[type="text"], .form-signin input[type="password"] { font-size: 16px; height: auto; margin-bottom: 15px; padding: 7px 9px; }

3
Logique pour filtrer les données d'un tableau

Html->link(__('En cours', true), array('action' => 'filter_active')); ?>

3
Comment ajouter un script avec Twig

Jquery à la fin de ma page "layout" (juste avant la balise body). Comment faire ? Merci d'avance. ## Le code layout.twig ```html {{ title }} {% block contenu %}{% endblock %} ``` maPage.twig ```html {% extends "./layout.twig" %} {% block contenu %} $(document).on('focusin', function (e) { if ($(e.target).closest(".mce-window, .moxman-window").length) { e.stopImmediatePropagation(); } }); {% endblock %} ```

1
Les chanegements de CSS ne s'affichent pas toujours sur ma page web

HTML j'ai mis pour le premier paragraphe Entrepreneur, fondateur, et instructeur et sur CSS .premierparagraphe { text-align: center; } et je ne vois aucun changement mon paragraphe n'est pas encore

12
[RESOLU]Ajax avec plusieurs fichiers json

html = ''; html += ' ' + entry.Annonce.name + ' '; $('#liste-annonces').append(html); }); }); return false; }); Ceci fonctionne très bien. Je souhaite que lorsque qu'un user clique sur le nom d'une annonce, il arrive sur la fiche

6
Mon code css ne marche plus

html et CSS d'un de mes anciens sites élaboré pour pouvoir modifier le code et élaborer un autre site avec un autre design, mais le code css ne repond

14
requete ajax sur un lien

passer nos variables, exactement comme en GET, au script more_com.php dataType : 'html', success : function(code_html, statut){ $("#fiche-1").html(data); }, error : function(resultat, statut, erreur){ }, complete : function(resultat, statut){ } }); }); }); ```

12