[ create a new paste ] login | about

teena7084

Name:
Email:
Site/Blog:
Location:
Default language:
Favorite languages:
About:

Saved pastes by teena7084:

PHP, pasted on Sep 26:
1
2
3
4
5
<?php
function category_list( $category_parent_id = 0 )
{
      // populate a list items array
    $list_items = array();
...
view (38 lines, 8 lines of output)
PHP, pasted on Sep 23:
1
2
3
4
<?php
$month = date('F'); //full textual representation of month 
echo date("m/d/y", strtotime(date('F') . date('Y') ."  third Wednesday")); 
 
...
view (7 lines, 1 line of output)