Automatically exported from code.google.com/p/planningalerts
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

24 lines
849 B

  1. <?php
  2. //Includes
  3. require_once('config.php');
  4. require_once('application.php');
  5. //build date url
  6. $request_time = get_time_from_get();
  7. //search url
  8. $search_url = "http://idox.hackney.gov.uk/WAM/weeklyApplications.do?action=showWeeklyList&areaCode=%25&sortOrder=1&endDate=#enddate&applicationType=%25&Button=Search";
  9. $search_url = str_replace("#enddate", $request_time * 1000, $search_url);
  10. //comment and info urls
  11. $info_url_base = "http://idox.hackney.gov.uk/WAM/showCaseFile.do?action=show&appType=Planning&appNumber=";
  12. $comment_url_base = "http://idox.hackney.gov.uk/WAM/createComment.do?action=CreateApplicationComment&&applicationType=Planning&appNumber=";
  13. //grab urls
  14. $applications = scrape_applications_wam($search_url, $info_url_base, $comment_url_base, 2);
  15. display_applications($applications, "London Borough of Hackney", "Hackney");
  16. ?>