links for 2008-02-21
-
Using this trick we limit the default dimensions of the thumb, and show it in full size when user mouse-overs it.
Regardless of which database back end your project uses, a JavaScript Object Notation (JSON) controller can simplify your development efforts. Set up a very basic JSON controller that can enhance your next development project.
Post original
Más enlaces rápidos sobre NOSQL, para variar:
Uno de los problemas con los que nos solemos encontrar es leer imágenes en PHP mediante la librería GD sin estar seguros de que tipo de fichero es: JPEG, GIF o PNG. Normalmente solemos mirar la extensión y según sea, abrir el fichero con alguno de los métodos que ofrece GD. Pero hay una solución más sencilla: leer el fichero en un string y crear la imagen usando ese script:
$img_content = file_get_contents($image);
$im = imagecreatefromstring($img_content);
// Para saber el tipo de imagen por si lo necesitamos
$imgtype = exif_imagetype($image);
NoSQL Databases Aren’t Hierarchical: Unfortunately based on a wrong hypothesis: However most of the NoSQL tools seem to be NoRelational. As I see it, many of these tools map closely to the model that the relational model replaced.. the hierarchical m
Post original