Sorry if this is a very basic question, but I don't really know any php and couldn't figure out how to solve this:
I have the following code which works fine. What I would like to do is have it return apartments not just for 'Norway', but also for one or more other countries, i.e. 'Sweden'...
Could someone please let me know how to change the code? I tried all sorts of separators but without success.
Thanks very much!
<?require_once($config['basepath'].'/include/search.inc.php');
$search = new search_page();
$_GET['country']='Norway';
$_GET['type']='Apartment';
$display2 = $search->search_results();
echo $display2;?>