Answer the question
In order to leave comments, you need to log in
Price by region?
On the main page there is a slider that displays "hot" offers. It is necessary to make sure that, depending on the region, the price for this offer changes. What should you read about?
Answer the question
In order to leave comments, you need to log in
It is necessary to determine the geolocation by IP, then, depending on the received region, display the price
Something like:
<?php
$location = getLocationByIp($_SERVER['REMOTE_ADDR']);
switch ($location) {
case 'Moscow':
$price = 1500;
break;
default:
/* Есле геолокация не определилась */
$price = 1000;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question