[ create a new paste ] login | about

Andrew

Name: Andrew
Email:
Site/Blog: http://--
Location: --
Default language: PHP
Favorite languages: PHP
About:

Saved pastes by Andrew:

PHP, pasted on May 3:
1
2
3
4
5
<?php
//LolRotator
$images = array();
//set allowed images
$allowed = array('image/jpg', 'image/png', 'image/gif', 'image/tiff');
...
view (38 lines, 2 lines of output)
PHP, pasted on Apr 26:
1
2
3
4
5
<?php
//Project Euler 1
//If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23.
//Find the sum of all the multiples of 3 or 5 below 1000.
$sum = 0;
...
view (12 lines, 1 line of output)