I really do not know of any books nor tutorials, but all you have to remember is if you are not using PHP 4.0+ you use the following:

$HTTP_POST_VARS
$HTTP_GET_VARS

If you are using 4.0+ its:
$_POST['variable']
$_GET['variable']
$_REQUEST['variable']