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  
Strip out all but numbers
Published on : 13.05.2010 Category : PHP Snippets Viewed : 30 times.
[code] $numbers = preg_replace("/[^0-9]/", '', $numbers_and_letters); [/code]...
Read More »

Convert text to link
Published on : 13.05.2010 Category : PHP Snippets Viewed : 26 times.
[code] <?php function convertToURL($text) { $text = ...
Read More »

Wordpress 2.9 Post Thumbnail
Published on : 13.05.2010 Category : PHP Snippets Viewed : 27 times.
[code] <?php add_theme_support('post-thumbnails'); ?> //add this to functions.php <?php the_post_thumbnail(...
Read More »

WordPress-Powered Portfolios: list_work() (2.9 Update)
Published on : 13.05.2010 Category : PHP Snippets Viewed : 25 times.
[code] <?php // http://tylersticka.com/2009/12/wp29thumbnails/ // Tell WordPress that post thumbnails are supported in this themeadd_theme_supp...
Read More »

PHP Getters and Setters
Published on : 13.05.2010 Category : PHP Snippets Viewed : 28 times.
[code] <?php  class Person { private $first; ...
Read More »

Other focus
Published on : 13.05.2010 Category : PHP Snippets Viewed : 29 times.
[code] <?php global $post; $theposts = get_posts("numberposts=4&category=3"...
Read More »

Reading the subject of the client cert
Published on : 13.05.2010 Category : PHP Snippets Viewed : 21 times.
[code] $ccert = $_SERVER['SSL_CLIENT_CERT'];$parsed = openssl_x509_parse...
Read More »

Alphabet Pagination
Published on : 13.05.2010 Category : PHP Snippets Viewed : 42 times.
[code] function sitehelper_get_membernav(){  //get current url to build relative links $base ...
Read More »

Apache log line parser
Published on : 13.05.2010 Category : PHP Snippets Viewed : 25 times.
[code] function parse_access_log_line($format, $line) {  // Get list of consistent patterns...
Read More »

Drupal db_query example
Published on : 13.05.2010 Category : PHP Snippets Viewed : 243 times.
[code] $values = array(1, 2, 3, 4, 5...
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