Quote:
|
Originally Posted by mrfemale2003
is there a place online where I can find the meaning of
$fp = fopen( $att, "r"); $file = fread( $fp, $att_size );
and other coding?
Thanks
|
Once you understand the basic structure of the language - in other words, you realize that $fp is a variable and fopen() is a function that takes at least two parameters - I really think the php manual on php.net is one of the best resources available. Just go to php.net and type "fopen" into the search box at the top of the page.
The documentation does a good job of explaining what the function does, what the parameters should be and usually offers a couple examples. The user contributed notes at the bottom often offer implementation notes from real world experience.