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  
Uploaded file handling with php
Published on : 08.05.2010 Category : PHP Snippets Viewed : 24 times.
[code] // $_FILES array// $_FILES['field_name']['name'] = filename// $_FILES['field_name']['type'] = mime type, if provided by browser// $_FILES['field_name']['size'] = file siz...
Read More »

Junk Remove from wp-head
Published on : 08.05.2010 Category : PHP Snippets Viewed : 41 times.
[code] // remove junk from headremove_action('wp_head', 'rsd_link');remove_action('wp_head',...
Read More »

jQuery include the smart way in functions.php
Published on : 08.05.2010 Category : PHP Snippets Viewed : 28 times.
[code] // smart jquery inclusionif (!is_admin()) { wp_deregister_script(...
Read More »

Word Sensative substr function
Published on : 08.05.2010 Category : PHP Snippets Viewed : 25 times.
[code] <?php/*** word-sensitive substring function with html tags awareness* @param text The text to cut*...
Read More »

GETful SOAP to JSON
Published on : 08.05.2010 Category : PHP Snippets Viewed : 24 times.
A really simple SOAP to JSON and back script, for when you just want to kick SOAP in the groin. With jQuery you'd just do: $.getJSON('path/?function=myFunc&params={"param":"value"}&callback=?',function(json){alert(json);}); [code] <?php ...
Read More »

Prompt user to open or save when delivering file data stored in database with PHP
Published on : 08.05.2010 Category : PHP Snippets Viewed : 0 times.
[code]<?header("content-type: $mime_type");header(...
Read More »

Prompt user to open or save when delivering file data stored in database with PHP
Published on : 08.05.2010 Category : PHP Snippets Viewed : 23 times.
[code] <?header("content-type: $mime_type");header(...
Read More »

Ridirect refer
Published on : 08.05.2010 Category : PHP Snippets Viewed : 22 times.
[code] // in action$default = 'some_module/some_action';$referer = $request->getReferer...
Read More »

Exclude page from wp_list_pages using custom field
Published on : 08.05.2010 Category : PHP Snippets Viewed : 46 times.
[code] global $post; $args=array( 'post_type' ...
Read More »

Clear Cookie
Published on : 08.05.2010 Category : PHP Snippets Viewed : 29 times.
[code]while (list($key, $val) = each(...
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