Re: Include Question!

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Your code would essentially be "inserted" in the place where your include
statement is called.  Let's say that your in 'page.php' you had the
following code:

echo "I AM IN PAGE.PHP!";

and then in your script you have your code:

if (some variable) {
    include('page.php');
}


This would essentially be giving you the code:

if(some variable) {
    echo "I AM IN PAGE.PHP!";
}

I hope that this makes sense.. and this helps!

On Fri, May 9, 2008 at 1:49 PM, Matthew Gonzales <matt323@xxxxxxx> wrote:

> So I am really cornfused about the include function.
>
> If I use the include function to make my code readable and neat where does
> the included code go. For instance:
>
> if (some variable){
> include(page.php);
> }
>
> Does the code go into the current page where the include statement is
> located on the page. Hope that makes sense.
>
> Matt G
>
> --
> Matthew Gonzales
> IT Professional Specialist
> Enterprise Information Technology Services
> University of Georgia
> Email: matt323@xxxxxxx <mailto:matt323@xxxxxxx>
> Phone: (706)542-9538
>
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>

[Index of Archives]     [PHP Home]     [PHP Users]     [PHP Database Programming]     [PHP Install]     [Kernel Newbies]     [Yosemite Forum]     [PHP Books]

  Powered by Linux