Welcome To Snipplr
Everyone's Recent PHP Snippets Tagged php
- All /
- JavaScript /
- HTML /
- PHP /
- CSS /
- Ruby /
- Objective C
Inserts the values of an array into a table. Also supports specifying if a specific field needs to be encoded using PASSWORD()
Parameters:
Table: Name of table to insert into
Data: array of $field->$value of new data
Password Field: Which field i...
3
970
posted 15 years ago by depmed
Was fiddling around at work one day thought this might be useful.
9
2451
posted 15 years ago by djdykes
Put classes around your bodyy, to allow different colors for seperate pages and areas on your site.
IT will simply add a css-safe version of the first argument in an url. Say the url is /about_us/our_company the class will be
body.about-us
Require...
2
492
posted 15 years ago by berkes
The original code was meant to be used with register_globals=on.
If you cannot or don't want to turn that on, then I have modified the code to work with register_globals=off.
4
548
posted 15 years ago by Jaymoon
echo ( browser_detection( 'number' ) .''.
browser_detection( 'browser' ) .''.
browser_detection( 'os' ) .''.
browser_detection( 'os_number' ) );
Outputs (browser version, browser, os, os number):
1.5
moz
nt
5.1
if ( ( browser_de...
2
711
posted 15 years ago by llbbl
good for parsing a message for urls so you can process them for character length when displayed on screen
3
543
posted 15 years ago by hdotnet
This class operates a range of mysql functions base on arrays.
Example:
Name:
Description:
22
3528
posted 15 years ago by emuen
This was posted on the PHP website, I use it quite often. You may get a warning as it is an "unsafe" include (include($var)), but it's a risk that needs to be taken.
5
500
posted 15 years ago by jgeewax
callback in a form alter to enforce an exposed filter to use only the options set in filter. Works for selectlists only.
2
497
posted 15 years ago by berkes
This code is based on the ASP script posted by Lio. It will determine the time taken for a php script to execute correct to 0.000000000000001 seconds.
2
433
posted 15 years ago by kotnik
Simple way to check see if a file exists and is readable before you include it. Stops nasty error messages onscreen.
5
763
posted 15 years ago by 1man
Very simple navigation. Style the id using CSS. Allows you to highlight the current page with CSS.
1
617
posted 15 years ago by 1man
Me he basado en el combo que he encontrado en snippler por luman por eso empieza el Ãndice en 2
3
756
posted 16 years ago by isaac
The above example uses PHP's heredoc syntax. With it, we can completely eliminate PHP tags from the insides of HTML tags.
1
1157
posted 16 years ago by juno