OK thank you. In fact I would like to give the show by making a filter on the name of the street and companies such details
like this
thesoftwareguy.in/wp-content/upload ...
I try to take your class list , but it does not work
 
 <tr align="left" valign="top">
      <td align="left" valign="top">Company name</td>
      <td align="left" valign="top"><select id="company" name="company">
                                <option value="0">Please choose a company</option>
                                
                                <?php for($i=0; $i < count($arr); $i++) 
                                { print '<option value="'.$arr[$i]['id'].'">'.$arr[$i]['company'].'</option>'; } ?>
                              </select>
                            </td>
     </tr>
 <tr align="left" valign="top">
      <td align="left" valign="top">select type name</td>
      <td align="left" valign="top"><select id="type" name="type">
                                <option value="0">Please choose a type</option>
                                
                                <?php for($i=0; $i < count($arr); $i++) 
                                { print '<option value="'.$arr[$i]['id'].'">'.$arr[$i]['type'].'</option>'; } ?>
                              </select>
                            </td>
     </tr>