Voting

Please answer this simple SPAM challenge: seven minus seven?
(Example: nine)

The Note You're Voting On

aissatya at yahoo dot com
11 years ago
<?php

$foo
= array('bar' => 'baz');
echo
"Hello {$foo['bar']}!"; // Hello baz!

?>
<?php
$firstquarter
= array(1 => 'January', 'February', 'March');
print_r($firstquarter);
?>
<?php
$fruits
= array (
  
"fruits"  => array("a" => "orange", "b" => "banana", "c" => "apple"),
  
"numbers" => array(1, 2, 3, 4, 5, 6),
  
"holes"  => array("first", 5 => "second", "third")
);
?>

<< Back to user notes page

To Top