probleme tinymce Développer un site avec Cakephp jour 2

Html->link(__('List Posts'), array('action' => 'index'));?>

2
Envoie d'un mail après un nouveau post

html .= ' '.$v.' '; } $html .= ' '; }elseif($options['type'] == 'textarea'){ $html .= ' '.$value.' '; }elseif($options['type'] == 'checkbox'){ $html .= ' '; }elseif($options['type'] == 'file'){ $html .= ' '; }elseif($options['type'] == 'password'){ $html .= ' '; } if($error){ $html .= ' '.$error.' '; } $html .= ' '; return

7
[RESOLU][CakePHP] Meta partage sur Facebook

Html->meta('twitter:card', 'summary'); echo $this->Html->meta('twitter:site', '@coiffurejob'); echo $this->Html->meta('twitter:title', 'Coiffure Job'); echo $this->Html->meta('twitter:description', $cakeDescription); echo $this->Html

1
Problème d'accent sur mon flux le dauphiné

html.= " $date - $description \n"; } // fin de la boucle // on retourne la variable $html au programme (elle contient le code HTML pour l'affichage du flux) return utf8

4
Afficher group metabox dans une template page

html__( 'Generates reusable form entries', 'cmb2' ), 'options' => array( 'group_title' => esc_html__( 'Dossier de compétence {#}', 'cmb2' ), // {#} gets replaced by row number 'add_button' => esc_html__( 'Add Another Entry', 'cmb2' ), 'remove

2
Notice HtmlHelper

html(' ').fadeIn(500); $('#pluploadPreview').html(' ').fadeIn(500); } }); });

1
Problème d'affichage avec cakephp.
ido,

Html->script('jQuery'); ?> IDO-Logik

3
Récuperer donnée Mysql dans un formulaire : TP Back-End

HTML; use Core\HTML\Form; class BootstrapForm extends Form{ protected function surround($html){ return "{$html} "; } public function input($name,$label,$options = []){ var_dump ($name); $type = isset

4
comment recuperer la valeur d un bouton radio

html(output); if (Livraison == 1) { $('.total-panier').html(((MonPanier.totalpanier()) + (MonPanier.totalpanier()/(100/Poucentage_Livraison))).toFixed(2)); document.getElementById('livraison-detail').innerHTML = "Livraison incluse: " + Poucentage_Livraison +"% du prix total."; } if (Livraison == 2) { $('.total-panier').html

2