My host says it not their fault they say PHP works...
They are windows, said using Zend
The script I test B4 hand, but was in Unix OS and worked
FAILING this command htmlentities()
//add html entities used in Josh FlatFile db calendar
$event = htmlentities($event,ENT_QUOTES);
$submitted = htmlentities($submitted,ENT_QUOTES);
$record["event_key"] = $data;
$record["event_name"] = $event;
$record["event_description"] = $description;
$record["event_submitted_by"] = $submitted;
$record["event_month"] = $month;
list($record["event_day"]) = sscanf($day, "%d"); // string -> int
list($record["event_year"]) = sscanf($year, "%d"); // string -> int
Any ideas, or can any say why his is happening or maybe a work around?
TIA Rod