Advertisement
Sparkster

Untitled

Nov 8th, 2013
301
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php
  2.  
  3. session_start();
  4. require_once(__DIR__ . "/api/database.php");
  5. require_once(__DIR__ . "/api/api.classifieds.php");
  6.  
  7. include("ad_datas.php");
  8.  
  9. ?>
  10.  
  11. <form>
  12. <select>
  13.    
  14.     <?php
  15.    
  16.         foreach($vehicle_types as $vehicle) {
  17.             echo "<option value='{$vehicle}'>" . $vehicle . "</option>";
  18.         }
  19.     ?>
  20.  
  21. </select>
  22. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement