Yeah ... try buying a book on PHP, you'll get on a lot faster. However:
=> used, e.g. for specifying the starting index of an array
$myarray=array(1=>"arrayitem1", "arrayitem2" ...);
This is because arrays start automatically at 0, which, for computers, is of course the first 'number'. You might not want this and might want to specify a different starting number. There may be other uses of this symbol.
&& stands for AND, i.e.
if ($name=="" && $e-mail=="") {
echo "Put in your name and e-mail, you moron!";
}
-> is used in OO programming in PHP and, I think, creates an instance of an object or class, but I could be wrong because I'm too thick to understand OO properly, or even at all.
Best o luck
Norman