Linux SUSE, Mandrake or RedHat?

Page 2 - Seeking answers? Join the AnandTech community: where nearly half-a-million members share solutions and discuss the latest tech.

Flatline

Golden Member
Jun 28, 2001
1,248
0
0
O'Reilly makes some of the best literature...in-depth and informative. They seem to really enjoy explaining concepts from the ground up; I highly recommend their stuff.
 

Chooco

Banned
Apr 5, 2002
731
0
0
O'Reilly books are informative but their downfall is that they always have the most complicated example they can find to put a simple point across. this is straight out of my PHP book:

$person[0] = "Edison";
$person[1] = "Wankel";
$person [2] = "Crapper"
$creator['Light bulb'] = "Edison";
$creator['Rotary Engine'] = "Wankel";
$creator['Toilet'] = "Crapper";

$person = array('Edison', 'Wankel', 'Crapper');
$creator = array('Light bulb' => 'Edison', 'Rotary Engine' => 'Wankel', 'Toilet' => 'Crapper');

foreach($person as $name) {
echo "Hello, $name\n";
}
foreach ($creator as $invention => $inventor) {
echo "$inventor created the $invention\n";
}

looks pretty complicated right? that's on page 27 and it's trying to explain how arrays work........it doesn't say what the => is supposed to mean so this program doesn't really make any sense for somebody who is just learning PHP like me. for all your C programmers out there, no => does not mean greater than or equal to.