on 29/01/03 6:41 AM, Kiswa ([EMAIL PROTECTED]) wrote:
change If($id==1){ to If($_GET['id']==1){
or put this line near the top of your script:
$id = $_GET['id'];
or, a little more anal:
if(isset($_GET['id'])) { $id = $_GET['id']; }
Justin
> <font size="2"><a href="left.php?id=1" target="_self">Finansiering</a><BR>
> <?
> If($id==1){
> echo "<a href=info/leas.htm target=\"mainFrame\"><font
> color=\"#00CCCC\">Leasing</font></a><BR>
> <a href=info/avb.htm target=\"mainFrame\"><font color=\"#00CCCC\">R�ntefri
> avbet.</font></a><BR>
> <a href=info/stul.htm target=\"mainFrame\"><font
> color=\"#00CCCC\">Studentl�n</font></a><BR>";
> };
> ?>
>
>
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php