Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
const
URL = 'http://www.towerbase.34sp.com/birthdays.php?day=%d&month=%d';
var
command: string;
response: string;
begin
command := Format ( URL, [ DayOf(Now), MonthOf(Now) ] );
response := HTTP.Get ( command );
ExtractNames ( response );
end;