2009/6/23 Robaj <robrass...@gmail.com>:
>
> I know this isn't strictly speaking a Prototype issue, but this is the
> only group I am in and a few topics do skirt around the edges of your
> main topic.
>
> If I have a file -
> home.php
> <?php
> echo "<h1>A very interesting home page</h1>";
> ?>
>
> Then the file is returned to go into <div id="mainbody"></div> with a
> plain fread() into a variable which is 'echo'd back to the client.
>
> 'include'ing this file is fine, but then it passes through php at the
> same time as everything else.
>
> But any such file loaded as the action of an Ajax call is not fine. It
> doesn't get passed via php, or at least I don't think it does -
> because in 'mainbody' I get part of it such as
>
> Interesting"; ?>
>
> Confusing because if it were being passed through php I would expect
> 'Interesting'. but if it were not, then I would expect the whole file
> in plain text.
>
> I knew when I did this with fread I was probably heading for trouble,
> but which is happening,
>   partial php parseing,
>   no php parseing or
>   ..... ?
>
>
>
> >
>

If you use fread(), you are reading a file. Any file. Nothing magic.
No processing.
If you use include()/require()/include_once()/require_once(), then PHP
will process that file if it contains a valid opening tag (<?php).

Uploading a file does NOT process the file. The file is only processed
when it is requested.

Can you provide any more information about what you are trying to do?

Maybe using the PHP General list would also be a better place for this
thread? (http://docs.php.net/mailing-lists.php)

Regards,

Richard.

-- 
-----
Richard Quadling
Zend Certified Engineer : http://zend.com/zce.php?c=ZEND002498&r=213474731
"Standing on the shoulders of some very clever giants!"

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Prototype & script.aculo.us" group.
To post to this group, send email to prototype-scriptaculous@googlegroups.com
To unsubscribe from this group, send email to 
prototype-scriptaculous+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to