Does your script happen to look like this?

#!/usr/local/bin/php
<?php

If so then it is because of that "magic" line at the top the
'#!/usr/local/bin/php'.  If you remove that you won't see the path anymore, but
then the script won't be self executing:

# ./script.php

You will have to run them "manually":

# php script.php

Nathan Cook
[EMAIL PROTECTED]
----- Original Message -----
From: "midget2000x" <[EMAIL PROTECTED]>
To: "Nathan Cook" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Thursday, May 17, 2001 3:15 PM
Subject: Re: [PHP] running a stand-alone PHP program


> Excellent.  I got this working.  From a command line the standalone PHP
> scripts work well, but if I hit them via http, it renders the path to PHP at
the
> top of the page (but does execute the code).  Any fix for that?
>
> Thanks,
>
> Rory
>
> On Thu, 17 May 2001, Nathan Cook wrote:
> > Not if you are currently running it as an apache module.  If you are running
it
> > as a cgi, then it might.  But it sounds as if you are running it as an
apache
> > module.
> >
> > Nathan Cook
> > [EMAIL PROTECTED]
> > ----- Original Message -----
> > From: "midget2000x" <[EMAIL PROTECTED]>
> > To: "Nathan Cook" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
> > Sent: Thursday, May 17, 2001 10:38 AM
> > Subject: Re: [PHP] running a stand-alone PHP program
> >
> >
> > > OK, thanks.  This is great.  But will this affect my existing installation
of
> > > PHP?  excuse the newbie questions!
> > >
> > > I appreciate your help.
> > >
> > > Thanks,
> > >
> > > Rory
> > >
> > > On Wed, 16 May 2001, Nathan Cook wrote:
> > > > Assuming you are running linux...
> > > >
> > > > Just remove the "--with-apache", from the ./configure statement...
should
> > look
> > > > something like this
> > > >
> > > > # ./configure [DIRECTIVES] [--with-mysql=/usr/local/mysql]
> > > > # make
> > > > # make install
> > > >
> > > > Should install to:
> > > > # /usr/local/bin/php
> > > >
> > > > then you can run scripts by:
> > > > # /usr/local/bin/php /path/to/script/scriptname
> > > >
> > > > Have Fun!
> > > > Nathan Cook
> > > > [EMAIL PROTECTED]
> > > > ----- Original Message -----
> > > > From: "midget2000x" <[EMAIL PROTECTED]>
> > > > To: <[EMAIL PROTECTED]>
> > > > Sent: Wednesday, May 16, 2001 2:52 PM
> > > > Subject: RE: [PHP] running a stand-alone PHP program
> > > >
> > > >
> > > > > I suppose I need to be more clear.  I already have PHP running, but I
want
> > to
> > > > > run actual PHP code that I write as a stand-alone program.  Is this
what
> > > > you're
> > > > > doing?
> > > > >
> > > > > On Wed, 16 May 2001, you wrote:
> > > > > > yeah.  i run it as a CGI.
> > > > > >
> > > > > > compile it as a binary, then edit the apache config...
> > > > > >
> > > > > > that's it
> > > > > >
> > > > > > > -----Original Message-----
> > > > > > > From: midget2000x [mailto:[EMAIL PROTECTED]]
> > > > > > > Sent: Wednesday, May 16, 2001 4:18 PM
> > > > > > > To: [EMAIL PROTECTED]
> > > > > > > Subject: [PHP] running a stand-alone PHP program
> > > > > > >
> > > > > > >
> > > > > > > I apologize if this has already been covered...I can't seem to
find it
> > in
> > > > the
> > > > > > > archives...
> > > > > > >
> > > > > > > can PHP be coded and run as a stand-alone program?  If so, where
can I
> > get
> > > > more
> > > > > > > info on that?
> > > > > > >
> > > > > > > I am running Linux and would like to pass some data to PHP from a
> > > > > > > CGI program.
> > > > > > >
> > > > > > > Thanks!
> > > > > > >
> > > > > > > Rory
> > > > > > > -----------
> > > > > > > providing the finest in midget technology
> > > > > > >
> > > > > > > --
> > > > > > > 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]
> > > > > --
> > > > > -----------
> > > > > providing the finest in midget technology
> > > > >
> > > > > --
> > > > > 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]
> > > > >
> > > > >
> > > --
> > > -----------
> > > providing the finest in midget technology
> > >
> --
> -----------
> providing the finest in midget technology
>
> --
> 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