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  
Convert date to YYYY-MM-DD with PHP
Published on : 08.05.2010 Category : PHP Snippets Viewed : 28 times.
This will convert dates from MM-DD-YYYY to YYYY-MM-DD (iso format)[code]<?function convertDate($date) { $date =...
Read More »

Wordpress Custom post type
Published on : 08.05.2010 Category : PHP Snippets Viewed : 31 times.
Add a custom post type of news [code] <?php function post_type_news() { register_post_type( 'New',...
Read More »

Mysql batch insert
Published on : 08.05.2010 Category : PHP Snippets Viewed : 28 times.
[code] < ? $batchconnection = new mysqli($dbHost, $dbUser, $dbPass, ...
Read More »

CSV
Published on : 08.05.2010 Category : PHP Snippets Viewed : 24 times.
[code] $kz = array();  if (($handle ...
Read More »

Wordpress Comment counts
Published on : 08.05.2010 Category : PHP Snippets Viewed : 24 times.
Count the number of comments in wordpress blog [code] <?php /* Counts the posts, comments and categories on your blog */ $numposts = $wpdb->get_var...
Read More »

Add a read more link in wordpress
Published on : 08.05.2010 Category : PHP Snippets Viewed : 20 times.
Add read more link for wordpress [code] function new_excerpt_more($post) { return '<a class="more" href="'. get_permalink(...
Read More »

Custom wordpress excerpt lengths
Published on : 08.05.2010 Category : PHP Snippets Viewed : 77 times.
Change the excerpt value in functions.php[code]...
Read More »

Simple PHP URL ReWritee
Published on : 08.05.2010 Category : PHP Snippets Viewed : 21 times.
[code] // HTACCESS FILE<IfModule mod_rewrite.c>RewriteEngine onRewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-dRewriteRule .* ...
Read More »

Get_image
Published on : 08.05.2010 Category : PHP Snippets Viewed : 25 times.
[code] // get and return images for empty imagesfunction get_image($url){ $image ...
Read More »

Get full path of current file
Published on : 08.05.2010 Category : PHP Snippets Viewed : 23 times.
[code] //get full path including filename of current file$fileTarget = __FILE__;// get absolute path$path ...
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