Récupération etat des checkbox dans une édition

HTML {$label} {$this->getErrorFeedback($key)} HTML; } ``` Actuellement je récupère bien dans ma base de donnée la valeur 1 ou 0 selon la checkbox coché. Mais je n'arrive pas a récupérer

9
jquery ajax load recharge la page apres un post

html', data: $form.serialize() }).then(function (data) { $("#affiche_mess").html(data); // Mise à jour des messages $.ajax({ url: '/fiche_cli/liste_profil.php', method: 'GET', dataType: 'html', data: $form.serialize() }).then(function (data) { $("#list_profil").html

4
can't display correctely the page with ajax

html){ afficher(html); }, error:function(XMLHttpRequest, textStatus, errorThrown){ alert(textStatus); } }) return false; }); $("#main-menu a").bind('click',function(){ page=$(this).attr("href"); $("a ").removeClass('active'); $(this).addClass('active'); $.ajax({ url: "contenu

4
ClassList.add ne fonctionne pas avec paths SVG

HTML, CSS et JS et j'essaye de coder une petite carte interactive des stations de ski autour de Grenoble. Pour ça j'ai créé mes zones ou je souhaite

0
Réécriture de l'url pose probème

Html', 'Session', 'Date'); public $components = array('RequestHandler'); /** public $cacheAction= array( 'index'=>'2 DAY', 'show'=>'2 DAY' ); **/ public $uses = array('Post'); function menu(){ $posts = $this->Post->find('all',array( 'conditions' => array

0
Ré-écriture d'url difficile

html$ /index.php?page=private/admin_$1 [L] RewriteRule ([a-zA-Z0-9]+)\.html$ /index.php?page=public/$1 [L] Voici l'architecture de mon site depuis la racine de mon serveur de dév

0
ChoiceList généré par deux sélection

success: function(html) { $('#commande_contratMetier').replaceWith( $(html).find('#commande_contratMetier') ); $('#commande_sousProjet').replaceWith( $(html).find('#commande_sousProjet') ); $('#commande_compteComptable').replaceWith( $(html).find('#commande_compteComptable') ); } }); }); ``` Merci d'avance pour votre aide :) !

0
Mise en forme affichage foreach

HTML {$v['shelf_name']} HTML; $rayon=$v['shelf_name']; } echo

5
Inserer dans bdd

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

26