for image upload thio function, the forms encoding type must be set to multipart/form-data.
edit the form tag:
<form action="homestay_Insert.php" method="post" name="WADAInsertForm" id="WADAInsertForm">
to:
<form action="homestay_Insert.php" method="post" enctype="multipart/form-data" name="WADAInsertForm" id="WADAInsertForm">