Boutons Copier multiples

HTML) : ``` function copyToClipBoard(num) { var content = document.getElementById('content'); content.select(); document.execCommand('copy'); alert("Copie !"); } ``` Mon HTML : ```

1
Call to a member function link() on a non-object

Html->link('Activer mon compte',$this->Html->url($link,true)); ?> Alors c'est peut-être juste une faute de frappe mais je ne la vois pas. Au cas ou, voici

1
dompdf impossible de générer le pdf problème d'url

HTML generated in our twig file $html = $this->renderView('account/facture.html.twig', [ 'order' => $order ]); // Load HTML to Dompdf $dompdf->loadHtml($html); // (Optional) Setup the paper size and orientation 'portrait' or 'portrait' $dompdf

19
Animation scroll conflit js et php

html ) { $html = preg_replace( '/(width|height)="\d*"\s/', "", $html ); return $html; } add_filter( 'post_thumbnail_html', 'respon_image', 10 ); add_filter( 'image_send_to_editor', 'respon_image', 10 ); add_filter

1
Problème IF avec EMPTY

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

8
sortir et utiliser une variable dans toutes les fonctions

html(result4); } else { $('.info').html('oups2'); } } }); } else { $('.check5').html(' Sélectionnez votre chargement'); $('.info').html(''); } }); voici la fonction qui aurait besoin des variables "availname" "availname2" et "r" voici le reste du code

2
Plupload : Passer une variable de session au fichier upload.php

marche pas $pdo->prepare("UPDATE users SET avatar=? WHERE id='$sessId' ")->execute([$u]) ; $pdo = null; */ $v='uploads/'.$u; $html=' '.basename($v).' × '; $html=str_replace('"','\\"',$html); die('{"error":false, "html": "'.$html.'"}'); } ?> ```

3
Problème avec mon flux rss

Html->url($v'link'], true), // 'link' => $this->Html->url('http://www.hello-web.net', true), 'guid' => array('url' => $this->Html->url($v'link'], true), 'isPermaLink' => 'true'), // Le lien permanent 'description' => $v'location'], // 'pubDate

2
Impossible d'ajouter une image - tinyMCE !!

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

12