Welcome To Snipplr
Everyone's Recent PHP Snippets Tagged php
- All /
- JavaScript /
- HTML /
- PHP /
- CSS /
- Ruby /
- Objective C
This is a slightly hard core email check. I work for clients that want real email addresses. They pay quite a bit of money so yes, I am going to give what they want...
3
822
posted 15 years ago by brownrl
Face it!
Whenever you make a website/app you always need to make XLS export for the simple people. I mean heaven to betsy if they have to take a csv file, or use phpMyAdmin.
So
Here are 3 little functions and a sample skeleton that I use fro...
6
1239
posted 15 years ago by brownrl
Some PHP code that can be used to get formatted HTML containing N number of tweets for a given twitter user.
5
1222
posted 15 years ago by gripnrip
this script splits the csv file two times (1. on "new line", 2. on ";") and returns a two dem array in the last for loop.
2
799
posted 15 years ago by antpaw
This is a good way to validate form input from PHP, in essence this could be a blue print for your forms.
5
927
posted 15 years ago by brownrl
like array_key_exists but accepts an array of key values to check
0
533
posted 15 years ago by iloveitaly
Use this function to print out all the rows in a table. Specify columns to show using the columnstring parameter:
tablulardata(tablename, columnstring);
ie:
tabluardata("users","username=Username|fname=First Name|lname=Last Name");
1
736
posted 15 years ago by kilrizzy
Use this function to pull all columns from a single database field.
getrowdata(tablename,rowid,prefix);
You would call this function like:
getrowdata("users",$_SESSION['user'],"user_");
The prefix is the prefix you want for the array names,...
1
854
posted 15 years ago by kilrizzy
what was taking an embarrassingly long time in Spry took 2 lines in PHP
0
863
posted 15 years ago by rwczippy
Enable the use of Custom Fields in Wordpress. This is the code to put into the markup. Related plugin: get-custom-field-values
0
819
posted 15 years ago by taqin
This allows you to get contents of any div with ID tag.
$matches[0] returns with parent div tag
$matches[1] returns with out parent div tag
1
2751
posted 15 years ago by Gustavs