BrioMusic Posted April 21, 2005 Share Posted April 21, 2005 Hi! Could someone please help me with this error message: Parse error: parse error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ')' in d:\home\BRIOMUSICSHOP.COM\STORE\includes\functions\html_output.php on line 277 Here is line 277: $field .= '>' . tep_output_string($values[$i]['text'], array('"' => '"', ''' => ''', '<' => '<', '>' => '>')) . '</option>'; Link to comment Share on other sites More sharing options...
Guest Posted April 22, 2005 Share Posted April 22, 2005 There are missing backslashes: $field .= '>' . tep_output_string($values[$i]['text'], array('"' => '"', '\'' => '\'', '<' => '<', '>' => '>')) . '</option>'; Matti Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.