Brouillard total

HTML de la page? Je pige pas tout ça. Ou alors ils restent dans le net, mais comment sont-ils actionnés? Ce sont des bibliothèques? C'est quoi les bibliothèques

6
Questionnaire sur les namespace

Tuto\Template\render($chaine, "html"); } } namespace Tuto\Template { function render($chaine, $contentType = "text"){ if(\strtolower($contentType) == "html"){ return "".$chaine.""; } else { return $chaine; } } } namespace { echo \Tuto\Controller\render("Hello World !"); } ?> Merci

4
Problème tinyMCE tutoriel Cakephp jour 2

Html->script('tiny_mce/tiny_mce.js', array('inline' => false)); ?> tinyMCE.init({ mode : 'textareas', theme : 'advanced' , plugin : 'inlinepopups, paste, image', theme_advanced_buttons1 : 'bold,italic,underline,|,bullist

1
Fautes d'orthographe sur le site

HTML & CSS" : * "2 language" -> "2 langages" ou "deux langages" * "permettrons" -> "permettront" * On peut aussi remplacer "L'HTML et le CSS" par "HTML et CSS", je trouve ça plus fluide * Dans

0
Phpmailer

HTML $mail->Subject = 'Here is the subject'; $mail->Body = 'This is the HTML message body in bold! '; $mail->AltBody = 'This is the body in plain text for non-HTML mail

3
Cakephp et javascript
Anju,

Html->link( $this->Html->image('update.gif', array('alt' =>'Modifier')), array('controller' => 'users', 'action' => 'edit', $user->id), array('escape' => false))*/ ?>

11
TP : Connexion à la base de donnée

html = ' '. substr($this->contenu,0, 150).'... '; $html .= ' Voir la suite '; return $html; } } ``` Voici mon code dans home.php ```

2
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
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
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