|
Posted by comp.lang.php on 01/28/07 20:05
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"
Phil
>
> --
> ==================
> Remove the "x" from my email address
> Jerry Stuckle
> JDS Computer Training Corp.
> jstuck...@attglobal.net
> ==================
[Back to original message]
|