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  
Forzar la descarga de archivos
Published on : 08.05.2010 Category : PHP Snippets Viewed : 33 times.
[code] function download_file($filename, $name = NULL, $mime_type = 'application/octet-stream') ...
Read More »

Comprimir y descomprimir archivos ZIP
Published on : 08.05.2010 Category : PHP Snippets Viewed : 24 times.
[code] /* creates a compressed zip file */function create_zip($files = array(),...
Read More »

Convert URLs within String into hyperlinks
Published on : 08.05.2010 Category : PHP Snippets Viewed : 25 times.
This function converts URLs and e-mail addresses within a string into clickable hyperlinks. [code] function makeClickableLinks($text) { $text = ...
Read More »

Simple http session
Published on : 08.05.2010 Category : PHP Snippets Viewed : 23 times.
This script helps you to test session persistence for your HTTP API. Launch this.php?set=valuuue to set the session value stored to value. Launch this.php to retrieve the value. [code] <?php/**...
Read More »

Validate IBAN number with PHP
Published on : 08.05.2010 Category : PHP Snippets Viewed : 32 times.
[code] // functioanfunction IbanValidation($value) { $iban = false;...
Read More »

Convert Drupal content fields from Markdown to Full HTML for display in CKEditor
Published on : 08.05.2010 Category : PHP Snippets Viewed : 37 times.
While these examples convert Markdown fields to HTML for use in CKEditor, the same method can be used to render the filters of any input_format. [code] <?php// Example 1:// Renders the body field as format_id '4' (i.e., Markdown) the...
Read More »

Single post depending on the category
Published on : 08.05.2010 Category : PHP Snippets Viewed : 28 times.
[code] <?php if (in_category(1)) { // Si el post pertenece a la cat 1, redirigir a single-1.php...
Read More »

Adding widgets to wordpress admin dashboard
Published on : 08.05.2010 Category : PHP Snippets Viewed : 23 times.
[code] add_action('wp_dashboard_setup', 'custom_dashboard_widgets'); function custom_dashboard_widgets()...
Read More »

Round Number to Nearest
Published on : 08.05.2010 Category : PHP Snippets Viewed : 22 times.
[code] function roundnum ($num, $nearest){ $ret = 0;...
Read More »

Round Time to Nearest
Published on : 08.05.2010 Category : PHP Snippets Viewed : 24 times.
[code] function roundTime($blnRoundDown = true) { $seconds = time...
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