I have a code like this
<? php
..
if ($type == 1) //book
{
echo $information_array[0]. '. <i><a href="updatebook.php?q=$information_array[1]">'. $information_array[1] . '</a></i>. '. $information_array[2] . ": " . $information_array[3]. ".<br/>";
}
..
?>
In the next page
<?php
$title= $_GET['q'];
echo $title;
?>
when I echo $title, I get $information_array[1] as output. But not the value stored in $information_array[1]. Value to $informatino_array[1] is brought from database in the first page using select statement.