51.
Before you can start processing images with PHP, you must first add the ability to upload images to your administrative form on ________

52.
When you’re uploading files you need to set the enctype of the form to __________

53.
To check whether a file was uploaded, you look in the _______ superglobal array.

54.
To make the ImageHandler class portable you should create a separate file for it called __________

55.
DocBlocks are indicated by opening a comment using _________

56.
To process the file, you need to break the array from $_FILES into individual values. You can do this using the ________ function.

57.
Before you try to process the file, you need to make sure that your $err value is equivalent to _________

58.
You use the $_SERVER superglobal and your _______ property to create your path to check.

59.
Which function do you have to use to check whether the $path you’ve stored exists?

60.
Which one of the following is true about the following line – $obj = new ImageHandler(‘/images/’, array(400, 300));