> Uh, why?  Adding ?asin$asin makes absolutely no sense in an include since
> included files share the same namespace as the parent file.  You can
> simply do:

Er, Rasmus. Do you mean "scope"? You're usually right on target with your
comments, so I'm sure that's what you meant.... :-)

Speaking of namespaces....

Let me encourage the PHP development folks to add namespace support ASAP.
I'd really like to make some of my apps PEAR-compliant, but I refuse to use
the inane naming convention for classes that I'd need to.

Dean.

>
> $asin = 123;
> include 'book_reviews.php';
>
> And the $asin variable will be accessible to you book_reviews.php script.
>
> -Rasmus
>
> On Thu, 8 Feb 2001, John Vanderbeck wrote:
>
> > I need to be able to do:
> >
> > <?
> > if (isset($asin))
> > {
> >     include("book_reviews.php?asin=$asin");
> > }
> > else
> > {
> >     include("book_reviews.php");
> > }?>
> >
> > This is embeded in one of my sites pages..However, the call with the var
> > added on won't work, it seems like its looking for a file with that
whole
> > name.  Does anyone know how I can do this?
> >
> > - John Vanderbeck
> > - Admin, GameDesign
> >
> >
> > --
> > PHP General Mailing List (http://www.php.net/)
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> > To contact the list administrators, e-mail: [EMAIL PROTECTED]
> >
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
>



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to