View Single Post

  #2 (permalink)  
Old 01-04-2005
Markku Uttula
 
Posts: n/a
Default Re: Why do does this give me an error?

Derek Fountain wrote:
> So, I know the library code is being loaded and executed (because
> the
> strings are echoed) but rp() isn't being defined.


Actually, Your webserver is executing the php-file (and thus outputs
the lines) but you're receiveing only the executed outcome, not the
php-file itself.

So essentially, what you get from http://localhost/~derek/l.php is the
following:

define function...defined

and not what you're expecting. Hope I'm making sense here :)

--
Markku Uttula

Reply With Quote