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  
Programmatically Create Image Cache URL
Published on : 08.05.2010 Category : PHP Snippets Viewed : 64 times.
[code] <?php print base_path().imagecache_create_path('imagecachepreset', $file_path); ?&g...
Read More »

PHP Mysql Connection Object
Published on : 08.05.2010 Category : PHP Snippets Viewed : 28 times.
A simple PHP object which connects to a mysql database, selects fields, creates users and more.. [code] <?phpclass dbCon{ public function __construct(...
Read More »

Split text up into 140 char array for twitter
Published on : 08.05.2010 Category : PHP Snippets Viewed : 28 times.
splittochunks splits the string up into an array with elements containing 140 characters or less. This enables you to keep words intact when sending automated twitter messages. $to is needed in order to subtract from 140 the amount of characters allowed. This is important because a long username could create problems with messages being too long. This could be done pragmatically, and would be relatively simple to do, but was n...
Read More »

Drupal theme preprocess - add classes
Published on : 08.05.2010 Category : PHP Snippets Viewed : 30 times.
[code] // Add 'node' back to list of classes because many js based // admin modules key off of .node instead of AT's preferred .article.$classes = explode...
Read More »

Call a Widget with a Shortcode
Published on : 08.05.2010 Category : PHP Snippets Viewed : 30 times.
[code] function widget($atts) {  global $wp_widget_factory;...
Read More »

Get .htaccess Variable Values
Published on : 08.05.2010 Category : PHP Snippets Viewed : 23 times.
you'll need this .htaccess file also RewriteEngine On RewriteBase / RewriteRule .* - [E=INFOAPIVERSION:%{APIVERSION},NE] RewriteRule .* - [E=INFOAUTHTYPE:%{AUTHTYPE},NE] RewriteRule .* - [E=INFOCONTENTLENGTH:%{CONTENTLENGTH},NE] RewriteRule .* - [E=INFOCONTENTTYPE:%{CONTENTTYPE},NE] RewriteRule .* - [E=INFODOCUMENTROOT:%{DOCUMENTROOT},NE] RewriteRule .* - [E=INFOGATEWAYINTERFACE:%{GATEWAY...
Read More »

Validate email address in php
Published on : 08.05.2010 Category : PHP Snippets Viewed : 23 times.
[code] function isValidEmail($email){ $result = eregi("^[_a-z0-9-]+(...
Read More »

Get Internal URL from URL Alias
Published on : 08.05.2010 Category : PHP Snippets Viewed : 28 times.
[code] <?php drupal_lookup_path('source',$url_alias); ?> [/code]...
Read More »

Webform results admin theme
Published on : 08.05.2010 Category : PHP Snippets Viewed : 25 times.
[code] // Added to support admin theme in webform resultsfunction webform_init() { // Support admin theme setting, based on system_init()....
Read More »

How to manually set active menu for nodes
Published on : 08.05.2010 Category : PHP Snippets Viewed : 50 times.
[code] /** * Implementation of hook_nodeapi(). * * This will evaluate individual nodes when being viewed and take the necessary...
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