Welcome To Snipplr
Everyone's Recent Snippets
- All /
- JavaScript /
- HTML /
- PHP /
- CSS /
- Ruby /
- Objective C
Shows how to create a DIV box that is scrollable and looks like a IFRAME.
6
1219
posted 18 years ago by hxseven
Read a page's GET URL variables and return them as an associative array.
----
Example for URL http://www.example.com/index.html?hello=bonjour&goodevening=bonsoir
var hash = getUrlVars();
alert(hash['hello']); // prints 'bonjour'
alert(hash...
35
8616
posted 18 years ago by Roshambo
To assert the difference in values before and after some code blocks. Save this as assert_helper.rb and include it in your test_helper.rb
1
781
posted 18 years ago by ctran
Una breve referencia de los meta carácteres y su significado en expresiones regulares en PHP.
Esta referencia de expresiones regulares es muy interesante para tener a mano. Está recogida de un comentario del manual de php.net.
4
1008
posted 18 years ago by Navegante
Simple templating for innerHTML functions. Parses an input string (tmpl) for %(NAME) tokens, accepts an object (ns) as data and returns an output string.
1
921
posted 18 years ago by mattgay
The ideal use of this code would be to save the Javascript code as a .js file. Then use the HTML code at the bottom to call it wherever you want on the web page.
1
1087
posted 18 years ago by Jaymoon
(Applies to the HTML_Template_IT PEAR package)
Useful script to find all global variables and put them
in a format for an array. $t is the HTML_Template_IT(X) object.
0
1321
posted 18 years ago by pckujawa
The form method must be post and the enctype set as it is below. The hidden input for MAX_FILE_SIZE must also be included. The value is the max file size (in bytes?).
4
1020
posted 18 years ago by pckujawa
Use to redirect an html page after headers have already been sent. The 5 is the number of seconds before redirect to the URL.
1
946
posted 18 years ago by pckujawa
Recorta el texto recibido al limite especificado de caracteres.
Caracteristicas:
* Si el texto es HTML el texto no contendra tags incompletos
* Si el texto no es HTML no se recortaran palabras
Notas: Se debe tener en cuenta que el texto pod...
1
756
posted 18 years ago by Navegante
Elimina las etiquetas de párrafo <P< y </P< (sin parámetros) y las sustituye por saltos de línea <BR />.
En caso necesario inserta un <BR /> adicional para simular la separación de párrafos.
0
906
posted 18 years ago by Navegante
Performance can be seen in link. This code, however, uses generator expression instead of list comprehension.
1
961
posted 18 years ago by newtonapple
Took 0.164692 seconds for array[]
Took 0.395778 seconds for array_push
As you can see array_push is more than twice as slow. Here are the reasons. Array_push is a function call, Function calls are always slower. Array_push takes mixed parameters,...
0
3806
posted 18 years ago by mthorn
strcmp with matching strings took 0.207852 seconds
strcmp with non-matching strings took 0.215276 seconds
=== with matching strings took 0.067122 seconds
=== with non-matching strings took 0.057305 seconds
=== is the clear winner. Function call...
0
2686
posted 18 years ago by mthorn