<?php session_start();
$page_flag=1;
?>
<?php
//initialize the diffrent search field when starting from home page
if($page_flag=='1')
{
session_register('location')='';
session_register('job')='';
session_register('key_wd')='';
session_register('pagenum')=1;
}
?>
I got a message that:
Fatal error: Can't use function return value in write context in line 17 and line 17 is session_register('location')=''; ........can you help me to find out the correction