Gestion de produit avec Cake php

Html->css('styles'); ?>

5
Afficher les extensions tirées d'une liste via SimpleDom

html = new simple_html_dom(); $html->load($serveur); //-- Modification de l'HTML foreach ($html->find('h1') as $title){ $title->outertext = ''; //je supprime le titre } foreach ($html->find('a') as $a){ // je cherche

3
Aide Upload PHP

HTML_TEMPLATE', 'default.tmpl'); if (!file_exists(HTML_TEMPLATE)) die( HTML_TEMPLATE . ' est manquant'); if (isset($_REQUEST['save'])) { $inputs = filter_input_array(INPUT_POST, array( 'page_name' => FILTER_SANITIZE_ENCODED, 'page

3
Avis sur la création d'un menu via un helper

Html->link($b['name'], $b['url']); } else { $res .= "\n\t" . $this->Html->link($b['name'], array('controller' => $b['controller'], 'action' => $b['action'])); } } } foreach ($pages as $page

1
Simplifier un code PHP

html = new simple_html_dom(); $html->load_file('#lien_1'); $csv = []; foreach($html->find("#btable tr") as $item) { $td =$item->find("td"); $temp = []; for($i=0;$i

14
Zoombox et cakephp 3

Html->link($this->Html->image($replace,array('alt'=>'CDI', 'title'=>'CDI', 'border'=>'none')), '/img/url/url-mon_image', array('class'=>'zoombox','escape' => false) ); echo ' '; } else{ echo ' ' ; echo $this->Html->link($this->Html->image($replace

0
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
Pagination d'une recherche

Html->link(__('Nouvelle Personne'), array('action' => 'add')); ?>

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

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

5