cameron
cameron

Reputation: 3

Make my Classified site Multicity Platform

I have a classified website and I am using a single script for each city and Im looking to use one script that will allow users to switch cities. If this is possible please let me know any help would be greatly appreciated Thanks :)

Upvotes: 0

Views: 190

Answers (1)

Mark Byers
Mark Byers

Reputation: 838346

Yes, it's possible. Here are a few example approaches:

  • You can add a parameter such as ?city=foo to the URL. This parameter can be read by the script.
  • You can include the city as part of the location http://yoursite.com/foo/ and use some URL rewrite magic to ensure that the same script gets all the requests.
  • You can store the user's preferred city in a cookie which your script reads.

Upvotes: 2

Related Questions