Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Parse error HELP please! : )


BrioMusic

Recommended Posts

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

There are missing backslashes:

 

 

      $field .= '>' . tep_output_string($values[$i]['text'], array('"' => '"', '\'' => '\'', '<' => '<', '>' => '>')) . '</option>';

 

Matti

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...