Hi

I'm just going to give the code and output.  It should be self explanatory.
The array, $criteria, is having the issue.  I don't know what it's doing.  I
cannot seem to assign the value from the $data variable to the
$criteria[index] value.  You will see some attempts to debug the situation
which leads me to more puzzlement.

CODE:

// run when cdata is found
function characterDataHandler($parser, $data)
  {
  switch( $GLOBALS['currentTag'] )
    {
    case "MINSTARTDATE" : echo $data;/*$GLOBALS['criteria']['minstartdate']
= $data;*/break;
    case "MAXSTARTDATE" : $GLOBALS['criteria']['maxstartdate'] =
"junk";/*$data;*/break;
    case "MINSTAY" : $GLOBALS['criteria']['minstay'] = $data; break;
    case "MAXSTAY" : $GLOBALS['criteria']['maxstay'] = $data; break;
    case "MINRENT" : $GLOBALS['criteria']['minrent'] = $data; break;
    case "MAXRENT" : $GLOBALS['criteria']['maxrent'] = $data; break;
    case "RENTINC" : $GLOBALS['criteria']['rentinc'] = $data; break;
    case "MINBEDS" : $GLOBALS['criteria']['minbeds'] = $data; break;
    case "MAXBEDS" : $GLOBALS['criteria']['maxbeds'] = $data; break;
    case "PROPCOUNT" : $GLOBALS['criteria']['propcount'] = $data; break;
    default: break;
    }
  }

....
....

echo "<pre>\n";
print_r($criteria);
echo "</pre>\n";


OUTPUT:
9/6/2003
Array
(
    [maxstartdate] => junk
    [minstay] =>

    [maxstay] =>

    [minrent] =>

    [maxrent] =>

    [rentinc] =>

    [minbeds] =>

    [maxbeds] =>

    [propcount] =>

)
Thanks.-- 
Chris Edwards
Web Application Developer
Outer Banks Internet, Inc.
252-441-6698
[EMAIL PROTECTED]
http://www.OuterBanksInternet.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to