On Thu, 14 Mar 2002, Brad Harriger wrote: <!-- snip -->
> <?
>
> // Now back to the PHP code
>
> $d = 250;
> }
> else {
> $e = "Does not apply."
> }
>
> ?>
>
> I have some code similar to this example. When I run the code in my
> browser, I get a parse error on the last line (?>).
Replace:
$e = "Does not apply."
with:
$e = "Does not apply.";
Cheers,
Nick Winfield.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

