Welcome To Snipplr
Everyone's Recent PHP Snippets Tagged php
- All /
- JavaScript /
- HTML /
- PHP /
- CSS /
- Ruby /
- Objective C
To get the simplest squeeze page possible: no header, sidebars or footer. Paste the following PHP in custom_functions.php. The first function is the filter that returns “false†instead of returning the content that would normal be there (in the h...
0
1277
posted 13 years ago by zachbrowne
PHP
Preserving Form Elements by creating hidden form elements on new page based on previous page's form submit
I made this function to render hidden form elements in a new page based on what was sent from the last form. This function can be used to preserve input from a long multiple-page form.
What does it do:
1. Go through all the submitted POST eleme...
0
870
posted 13 years ago by chopbust
# function *formatArrayForDisplay*
## parameters:
* **array**
a 1- or 2-dimensional array for output
* **mode**
accepts **human** or **PHP**
* **human** displays using `<pre>` tags and print_r
* **PHP** displays PHP styl...
1
1086
posted 13 years ago by daveespionage
Ordenamento de array para exibição em colunas múltiplas, via UL float.
0
635
posted 13 years ago by dessimoni
Mix EE channel tag into javascript add the following code into the config array.
0
691
posted 13 years ago by audiopleb
Use by sending a unix timestamp to countTime(timestamp). It will return something like 40 seconds , 2 weeks, 1 hour. Then just format to your needs like we do in our app: Someone was here 10 minutes ago.
0
759
posted 13 years ago by GeorgeL
Ported to PHP from here:
http://snipplr.com/view/48067/ (original: http://paulirish.com/2009/random-hex-color-code-snippets/)
2
1016
posted 13 years ago by ozke
converts array (which is reference) in format
<code>
array(0 => array('id' => 1, 'name' => 'orange'), 1 => array('id' => 3, 'name' => 'banana'));
</code>
to
<code>
array(1 => array('id' => 1, 'name' => 'orange'), 3 => array('id' => 3, 'n...
0
680
posted 13 years ago by slav123
Registro de usuario en PHP con validación y activación por mail
0
1347
posted 13 years ago by danideu
Registro de usuarios en PHP con validación y activación por mail
0
1464
posted 13 years ago by danideu
This simply takes an array and coverts it to variables. E.g. If you had an array, $array = array("key" => "value"), after running this script, $key would be "value".
0
736
posted 13 years ago by mloberg
PHP
Handy PHP thing I can\'t come up with a title for; display different data depending on where user comes from, sort of
If user enters city.php from footer.php, page will return certain string. If user enters independently, solution lets user see predefined string (in this case, 'your city').
0
1240
posted 13 years ago by stephcode
This function empties the folder recursively. Two parameters are passed in the function, First one is the directory to be emptied and second one is the flag to determine whether to delete the given folder. If set 'true', given folder is also removed...
0
881
posted 13 years ago by nilambar
This function uses the preg_replace counter to check for any non-alphanumeric characters.
You can use this for username / password validation if you don't want any special characters to be used.
1
637
posted 13 years ago by robertdotim