On Tuesday 12 November 2002 15:55, Fikret CAN wrote:
> hello PHP developers,
>
> I am going to convert a site that works with frames to the equivalent with
> includes. I have several template files whic behaves according to query
> string parameters. I don't want to make big changes, just make it work.
> <?php
> include("tmplt1.php?var1=val1&var2=val2");
> ?>
Try this way:
<?php
$var1=val1;
$var2=val2;
include("tmplt1.php");
?>
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php