PhpTips.im - Everything about php - Download CMS, find tips and tricks, code snippetz, classes and more and more...
Bookmark this page !
   

Articles

    Home » Articles » PHP Snippets
Browsing PHP Snippets RSS RSS

   Pages :   0     1     2     3     4     5     6     7     8     9     10     11     12     13     14     15     16     17     18     19     20     21     22     23     24     25     26     27     28     29     30     31     32     33     34     35     36     37     38     39     40     41     42     43     44     45     46     47     48     49     50     51     52     53     54     55     56     57     58     59     60     61     62     63     64     65     66     67     68     69     70     71     72     73     74     75     76     77     78     79     80     81     82     83     84     85     86     87     88     89     90     91     92     93  
Php intro
Published on : 08.05.2010 Category : PHP Snippets Viewed : 25 times.
[code] <?php// kommentar// echo betyr "skriv ut" echo "Hei ver...
Read More »

Comfortable directory contents with filters
Published on : 08.05.2010 Category : PHP Snippets Viewed : 23 times.
Very simple to use. Calling:[code]$files = dirContents(DIR_PATH, [FILTER, [TYPE]]);[/code]Examples:[code]$files = dirContens("my-dir"); $files is array containing all, both files either directories $files = dirContens("my-dir", "img[0-9]"); $files is array containing files or directories with ...
Read More »

Build dynamic cache file for offline
Published on : 08.05.2010 Category : PHP Snippets Viewed : 28 times.
[code] <?php$dir = new RecursiveDirectoryIterator(".");$hashes = ""...
Read More »

Bayesian Rating - Weighted voted rating system
Published on : 08.05.2010 Category : PHP Snippets Viewed : 39 times.
Bayesian Rating is using the Bayesian Average. This is a mathematical term that calculates a rating of an item based on the “believability” of the votes. The greater the certainty based on the number of votes, the more the Bayesian rating approximates the plain, unweighted rating. When there are very few votes, the bayesian rating of an item will be closer to the average rating of all items. [code] ...
Read More »

All request parameters in simple array
Published on : 08.05.2010 Category : PHP Snippets Viewed : 24 times.
[code] $array = array();foreach ($request->getParameterHolder...
Read More »

Simple Variable Handler
Published on : 08.05.2010 Category : PHP Snippets Viewed : 23 times.
Could be used across a multitude of languages. What this does is check to see if a variable is set, if it is then the variable gets left alone. If not, you define what it defaults to. The example takes the variable $myFruit, and if it's already been defined it stays as that fruit. If not, then it is defined as the string "apple". [code] 1. $myFruit ...
Read More »

Zen-Cart Fake Order Process
Published on : 08.05.2010 Category : PHP Snippets Viewed : 41 times.
[code] /** * Get one or more random date value between the start date * and the end date * &n...
Read More »

Date and Time Difference calculates in PHP
Published on : 08.05.2010 Category : PHP Snippets Viewed : 23 times.
[code] /** * Calculates the differences between two date *  * @param date $date1 * @para...
Read More »

Cross domain file check
Published on : 08.05.2010 Category : PHP Snippets Viewed : 30 times.
[code]$imgfile="http://www.crossdomain.com/image.jpg";try{ $k=@...
Read More »

Get Image Size
Published on : 08.05.2010 Category : PHP Snippets Viewed : 20 times.
[code] <?phplist($width, $height, $type, $attr)...
Read More »

 

 Members
Log In !
Email Address :

Password :


Change my passowrd !
Sign Up !
We have : 3 members.
Latest member : albans
 
 Last Posts
 
 Advertising
 
©PhpTips.im 2010
Powered by PikaCMS.
Quick Links :
Home | Browse all articles | Downloads | Terms of Use
RSS RSS 2.0 : Articles | Downloads ATOM : Articles | Downloads