Mobile Maps
Home
Services - Contacts

Advertising Login
% if ($error_message) {
Existing Advertisers

<% $error_message %>

% };
Existing Advertisers

% if ((defined($latitude)) and (defined($longitude))) { % }; % if (defined($portal_id)) { % }; <%perl> my $signup_url = "signup.html?"; #start with the ? but remove it later. if ((defined($latitude)) and (defined($longitude))) { $signup_url .= "latitude=$latitude&longitude=$longitude&"; #remove & later }; if (defined($portal_id)) { $signup_url .= "portal_id=$portal_id"; }; #now remove a trailing ? or & from the signup_html string if these were not #needed. $signup_url =~ s/\?$//; $signup_url =~ s/&$//;
Username
Password
New Advertisers

Sign-up for an advertising account with Mobilemaps.

Advantages of Mobilemaps NearbyAds technology:

  • Let local customers find you on the Internet
  • For the first time, you can target by keywords and location on the Internet. Literally place your text advertisements on the map!

  • Only pay for genuine interest
  • You only pay if someone clicks on your adverts, and you do not have to pay anything if your adverts are merely seen.

  • Simple online purchase
  • Create your own text advertisments online in minutes and pay for them online.

Further information is available in the Advertisers' FAQ, or the Mobilemaps NearbyAds page.

Hints

If you have forgotten your password, you can contact technical support who will send a new one.

We recommend you bookmark this page, so that you can return to your account in future.


Home | Services | Contacts

webmaster@mobilemaps.com
Mobilemaps.com is Copyright 2003 High Country Software Ltd.
<%init> #If we have come to this login page from lbs by clicking on the advert link, #check the latitude and longitude input: my $MIN_LATITUDE = -90; my $MAX_LATITUDE = 90; my $MIN_LONGITUDE = -180; my $MAX_LONGITUDE = 180; my ($latitude, $longitude); my $error_message = ''; if (defined($ARGS{'latitude'})) { if (($ARGS{'latitude'} =~ /^([0-9-+.]+?)$/) and ($ARGS{'latitude'} <= $MAX_LATITUDE) and ($ARGS{'latitude'} >= $MIN_LATITUDE)) { $latitude = $1; } else { $error_message = "Your latitude is outside " . $MIN_LATITUDE . " and " . $MAX_LATITUDE . "!"; }; }; if (defined($ARGS{'longitude'})) { if (($ARGS{'longitude'} =~ /^([0-9-+.]+?)$/) and ($ARGS{'longitude'} <= $MAX_LONGITUDE) and ($ARGS{'longitude'} >= $MIN_LONGITUDE)) { $longitude = $1; } else { $error_message = "Your longitude is outside " . $MIN_LONGITUDE . " and " . $MAX_LONGITUDE . "!"; }; }; #check for a portal_id input which indicates the portal or agent from #which the advertising customer has been forwarded my $portal_id; if (defined($ARGS{'portal_id'})) { if ($ARGS{'portal_id'} =~ /^([0-9]{1,10})$/) { $portal_id = $1; }; };