|
Posted by comp.lang.php on 01/28/07 20:20
On Jan 28, 3:18 pm, "Paul Lautman" <paul.laut...@btinternet.com>
wrote:
> comp.lang.php wrote:
> > On Jan 28, 2:56 pm, Jerry Stuckle <jstuck...@attglobal.net> wrote:
> >> comp.lang.php wrote:
>
> >>> On Jan 28, 1:58 pm, Jerry Stuckle <jstuck...@attglobal.net> wrote:
> >>>> comp.lang.php wrote:
> >>>>> I am using CLI PHP to run a PHP script, c:\wamp\php\php.exe, but
> >>>>> instead of executing my script, it's actually displaying the raw
> >>>>> code instead.
> >>>>> How can I run my code using CLI PHP? I installed WAMP5 on WinXP.
> >>>>> Thanx
> >>>>> Phil
>
> >>> php example.php
> >>>> Your code must be surrounded with <?php and ?>, just like in a web
> >>>> page.
>
> >>> install.php is indeed surrounded with PHP tags, just like in a web
> >>> page. As I can see when I do "php -q install.php" and see the
> >>> source code instead of the executions.
>
> >>> Phil
>
> >>>> --
> >>>> ==================
> >>>> Remove the "x" from my email address
> >>>> Jerry Stuckle
> >>>> JDS Computer Training Corp.
> >>>> jstuck...@attglobal.net
> >>>> ==================Then it should work. Or at least it does on
> >>>> every system I've used.
>
> >> But since you haven't posted the script or anything else about your
> >> installation, any answer is a guess.
>
> > I tried with a very simple one-liner script:
>
> > <?php
>
> > print_r("hello world");
>
> > And that is exactly what I see instead of "hello world"
>
> > PhilYou said earlier that your code was "surrounded with PHP tags", but what you
> have posted has no ending tag.
blah.php:
<?php print_r("hello world"); ?>
That is literally what I have. The end tag didn't paste onto this
message thread for some wacko reason, however, it still prints out
source code instead of "hello world"
Navigation:
[Reply to this message]
|