Re: [PHP] variables over 2 pages w/ a table.

2002-05-01 Thread Marius Ursache
try to send the same url + start=8 index.php?left=news Hey, > > i've got a little problem: > > I have two php pages > > index.php and news/index.php > > now in index.php there is a table which shows news/index.php > > $left = "news"; > $ltitle = "in

RE: [PHP] variables over 2 pages w/ a table.

2002-05-01 Thread Craig Vincent
> $left = "news"; > $ltitle = "index"; > $lext= "php"; > > include ("$left/$ltitle.$lext"); > > next > > so this should link to the index page, which calls upon > news/index.php, opens > it in the left column of the table, and gives $start the value of 8. > > but it gives me this error: > > Warni

[PHP] variables over 2 pages w/ a table.

2002-05-01 Thread Jule
Hey, i've got a little problem: I have two php pages index.php and news/index.php now in index.php there is a table which shows news/index.php $left = "news"; $ltitle = "index"; $lext= "php"; include ("$left/$ltitle.$lext"); now this allows me to keep the layout the same, but change the pag