Pleas can anyone tel me what kind of function this codes have ........
$link = $PHP_SELF."?language_id=".$row['lang_id'];
if ($HTTP_SESSION_VARS[language_id] == $row['lang_id'])
halooo
Moderator: General Moderators
Code: Select all
<?php
$link = $PHP_SELF."?language_id=".$row['lang_id'];
?>$link is a query string used to define a hyperlink.
The next bit is the start of an if clause:
Code: Select all
<?php
if ($HTTP_SESSION_VARS[language_id] == $row['lang_id'])
{
// do something
}
?>