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  
Adding Extra Fields to the WordPress User Profile
Published on : 08.05.2010 Category : PHP Snippets Viewed : 31 times.
[code] <?phpadd_action( 'show_user_profile', 'extra_user_profile_fields' );add_action( 'edit_user_profile'...
Read More »

Simple Voting for WordPress with PHP and jQuery
Published on : 08.05.2010 Category : PHP Snippets Viewed : 39 times.
[code] 1. ioio [/code]...
Read More »

Run Your Own TinyURL Service With Phurl
Published on : 08.05.2010 Category : PHP Snippets Viewed : 36 times.
[code] 1. gh [/code]...
Read More »

Lazy Registry Class
Published on : 08.05.2010 Category : PHP Snippets Viewed : 27 times.
Managing globals with the registry pattern. This class provides lazy loading functionallity. This means it is possible to add a callback or class (with arguments) which will be called or instanciated when it is being used for the first time. [code] <?php/**...
Read More »

How to get images from Google images with PHP
Published on : 08.05.2010 Category : PHP Snippets Viewed : 36 times.
This simply php function will retrieve the links of the images from Google Images searched with a keyword. The function just calls images.google.it and parse the html to find the url of the images, in this case the urls are stored in the javascript, so the parsing doesn’t use any html tag to find data. It builds an array of urls and return it. [code] function...
Read More »

Repleace everything but numbers
Published on : 08.05.2010 Category : PHP Snippets Viewed : 22 times.
[code] 1. preg_replace( '[\D]', '', $str ); [/code]...
Read More »

Test 2
Published on : 08.05.2010 Category : PHP Snippets Viewed : 29 times.
[code] <?phpecho "test";?> [/code]...
Read More »

Convert string to filename
Published on : 08.05.2010 Category : PHP Snippets Viewed : 28 times.
[code] function convert_to_filename ($string) {  $string = strtolower...
Read More »

Mass Update Products' Tax Class via Magento API
Published on : 08.05.2010 Category : PHP Snippets Viewed : 51 times.
[code] This script will change the Tax-Class of ALL your products in the $storeId!!<br />Be careful to use!<br /><br /> <pre><?php ...
Read More »

Trigger Drupal Admin Theme
Published on : 08.05.2010 Category : PHP Snippets Viewed : 21 times.
Needs to execute before theme is initialized -- Ideally in hookinit() -- but also works in hooknodeapi $op == 'view' [code] global $custom_theme;$custom_theme = variable_get(...
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