On 13-Jul-2000 Arthur Barton wrote:
> any of you people out there who still happen to be awake at this
> unfortunate hour (2:15 am ish)...

Well, I'm wide awake. By dint of being in another timezone :-) I'm no php guru,
but I'll try a suggestion or two.

> i have a php(3) statement that sits on a server, grabs some results from
> Flash, & is then *supposed* to display the results in the browser. Problem
> being here; the way the php was written, the if statement doesn't seem to
> parse when the result is "0". after a lot of how-to's etc, my if statement
> looks like...
> 
> if (isset(Score)) {
> etc

I'm learning php as I go here (that online annotated manual is quite
brilliant), so I may be being dumb here, but that shouldn't be $Score?

First thing I'd try here is to see if you can get the if() to work at all. Does
forcing it, e.g.

$score = 1;
if (isset($score)) {

work?

-- 
Jim Hague - [EMAIL PROTECTED] (Work), [EMAIL PROTECTED] (Play)
Never trust a computer you can't lift.


--
SLUG - Sydney Linux User Group Mailing List - http://slug.org.au/
More Info: http://slug.org.au/lists/listinfo/slug

Reply via email to