[ create a new paste ] login | about

chrisrasco

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

Saved pastes by chrisrasco:

PHP, pasted on Oct 4:
1
2
3
4
5
<?php
$_COOKIE['user'] = 1;
$poster_id = 1;
$username = 'Chris';
if (isset($_GET['article_id'])) {
...
view (39 lines)
PHP, pasted on Oct 1:
1
2
3
4
5
<?php

$arr = Array();
$arr[] = 1;
$arr[] = 2;
...
view (10 lines, 3 lines of output)
PHP, pasted on Sep 26:
1
2
3
4
5
<?php

$national_retail_propertiesRecord['leasing_inquiries'] = " 35 34 ";
$leasingsInqueries = explode(" ", $national_retail_propertiesRecord['leasing_inquiries']);
print_r($leasingsInqueries);
view (5 lines, 7 lines of output)
PHP, pasted on Sep 20:
1
2
3
4
5
<?php

class test
{
    function __construct()
...
view (30 lines, 1 line of output)