Canalblog Tous les blogs Top blogs Technologie & Science Tous les blogs Technologie & Science
Suivre ce blog Administration + Créer mon blog
MENU
Soucis et solutions de programmations
Publicité
Soucis et solutions de programmations
Publicité
Archives
Publicité
Publicité
5 mai 2008

<html> <head> <script

] - Permalien [#]

Partager cet article

Vous aimez ?
0 vote
Publicité
24 mars 2008

Permutation d'un tableau 2D variable [résolu]

Voici le problème actuel, à partir d'un tableau 2D variable je dois réaliser toutes les permutations possibles exemple soit le tableau [A][B][C][D][E][F][H] [J ][L][G] [K] Je devrais donc avoirA B C D EF B C D EG B C D E A H C D EF H C D EG H C D E A...
18 mai 2008

spécifications V2

Configuration technique : Apache 2.0 PHP5 spécifications sécurité : PHP : - empêcher les inclusions PHP L'inclusion se fait principalement par la méthode $_GET. On doit empêcher de pouvoir injecter du code à travers les variables. Par exemple on transforme...
17 mai 2008

Utilisation des sessions

Sites parlants des sessions : http://www.nexen.net/index.php?option=com_nexen_v2&Itemid=232&&lang=FR&nexen_url_type=intern&nexen_path=docs%2Fphp%2Fannotee%2Fref.session.phphttp://wiki.mediabox.fr/tutoriaux/php/utiliser-les-sessions-phphttp://phpsec.org/projects/guide/fr/4.htmlhttp://www.phpsources.org/tutoriel-sessions.htmhttp://php.developpez.com/cours/sessions/http://fr2.php.net/session...
11 mai 2008

liste d'adresses utiles

http://fr.selfhtml.org/html/reference/attributs.htmhttp://sahid.funraill.org/category/developpements-langages/javascript-ajax/http://www.editeurjavascript.com/trucs/35,ajax_interrogez_votre_serveur_avec_javascript.phphttp://www.editeurjavascript.com/...
Publicité
11 mai 2008

(css) structurer le popup

// Code CSS \\ label { margin-left : 20px; float : left; clear : both;} input[type="text"] { border : 1px black solid; float : right; margin : 0 20px 1px 0; width : 260px;} textarea { border : 1px black solid; width : 350px; height : 100px; margin : 3px...
11 mai 2008

(javascript) envoi de mail de notification

var resa_id = [15022, 15634, 9763, 26253, 2213]; function envoyer_notification(formname){ with ( document.getElementById(formname) ) { var sujet = isujet.value; if ( sujet == '' ) { alert('Veuillez rentrer un sujet'); return (false); } var expediteur...
11 mai 2008

(javascript) Fonction pour cacher/Afficher

function afficher(nom, valeur){ if ( nom == undefined ) return; if ( document.getElementById(nom) ) { if ( valeur == 'hidden' || valeur == 'visible' ) document.getElementById(nom).style.visibility = valeur; else if ( valeur == '' ) { if ( document.getElementById(nom).style.display...
7 mai 2008

Afficher cacher des éléments

function afficher (nom, valeur){ nom.style.visibility = valeur;} // nom = control à cacher / afficher (on peut l'utiliser sur des form, div, ...)// valeur = 'hidden' ou 'visible' Si on veut le faire depuis un select
0 vote
7 mai 2008

(un)check tout avec un name[]

On utilise l'id, le nom de la variable et la valeur voulu < script language ="javascript">