This is the trouble-making code:
<?php
//some code here
$zone = 'op';
$url = 'thread-list.php?zone=$zone';
header('Location : '.$url);
?>
Everything before and after header is working fine but the page is not getting redirected! What should I do? Using Header is working fine on other pages except here!