how i want to call variable from one page to another
Sessions or hidden form feilds or write them in the URL like www.something.com/index.php?var=hi
http://www.php.net/manual/en/ref.session.php
$id = mysql_result($result_group,$i,"gid"); $groupname = mysql_result($result_group,$i,"GroupName"); echo "<br>$id $groupname |";
how about this if i want it to be pass to htx file example
The same applies.
Nick
try this,
At first page page.php <?
link < ahref = www.blabla.com/foldername/page2.php?var1=<?echo var1?>&var2=<?echo var2?>>
?> at second page page2.php
<? echo var1; echo var2; ?>
hope this will help you.