Image sur les webmails

html = ob_get_contents(); ob_end_clean(); return MAIL::send($mail,$html,$object); } public static function send($mail,$html,$subject){ if (!preg_match("#^[a-z0-9._-]+@(hotmail|live|msn).[a-z]{2,4}$#", $mail

1
Problème de relation

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

2
Problème intégration dropdown bootstrap twitter cakephp

Html->script('bootstrap.js'); ?> et mon header la ou je veux utilisé le dropdown

2
problème tuto de A à Z

html .= ' '; }elseif($options'type'] == 'textarea'){ $html .= ' '.$this->controller->request->data->$name.' '; }elseif($options'type'] == 'checkbox'){ $html .= ' '; } $html .= ' '; return $html; } } et voici l'erreur que j'ai: Notice: Trying to get property

5
la classe form tuto A à Z jour 5

options as $k => $v) { if ($k!='type') { # code... $attr .= " $k=\"$v\""; } } if (!isset($options'type'])) { $html .=' '; }elseif ($options'type']=='textarea') { $html .=' '.$this->controller->request->data->$name.' '; }elseif ($options'type']=='checkbox') { $html .=' '; } $html .=' '; return $html; } }

4
Notice (8): Undefined variable: animal [CakePHP2]

Html->link( 'Ajouter un Animal', array('controller' => 'animaux', 'action' => 'add') ); ?>

5
Cakephp 3 : Pagination et Ajax

html issue d'une vue créer pour l'occasion. ``` $.ajax({ url: "/pages/projets", data: { page: currentPage, categorie: $(this).val() }, dataType: 'html', type: 'get', success: function (html) { $(".list-projet").html(html); } }) ``` Jusque

0
Creer un site de A à Z jour 5: Problème tableau d'options Form.php

html .= ' '; }elseif($options['type'] == 'textarea'){ $html .= ' '.$value.' '; }elseif($options['type'] == 'checkbox'){ $html .= ' Mettre en ligne '; } $html .= ' '; return $html; } } ``` PostsController: ```

2
Petit problème de charset

Html->image("icons/add_message.png",array('alt'=>'Add Message','url' => array('controller' => 'story', 'action' => 'addmessage', $storyAuthor'stories']'id'])));?>

8
question CSS sur vh et pourcentage

html: html{ height: 100%; } Dans ma tête, je me suis dit que la balise html étant la balise contenant tout mon html et n'ayant pas de balise parent, c'est 100% de quelquechose

0