public marks

PUBLIC MARKS with tags *** & astuces

March 2006

February 2006

January 2006

December 2005

Dans le genre quick and dirty: array2insert - Digital Fashion

by talou
<?php function array2insert($array, $table, $map = 'mysql_escape_string') { if (!is_callable($map)) { $map = create_function('$a', 'return $a;'); } $q = ''; $q .= 'INSERT INTO ' . $table . ' ('; $q .= implode(', ', array_keys($array)) $q .= ') VALUES(''; $q .= implode('', '', array_map($map, $array)); $q .= '')'; return $q; } ?>

November 2005

October 2005

AJAX à l'aide d'un .js

by talou & 1 other (via)
http://www.psssst.qc.ca/viewtopic.php?t=1751

September 2005