ianhaney Posted May 3, 2013 Share Posted May 3, 2013 HiI am using webid for a website I am doing for a customer and have added some extra fields to the sell item page and just before I submit it, the data I entered is not showing up in the confirm listing bit and was wondering if anyone could point me in the right direction, I did check the error log and found this but am bit unsure what to change or alterPHP Parse error: syntax error, unexpected ')', expecting '&' or T_STRING or T_VARIABLE or '$' in /home/sites/247autotrade.com/public_html/sell.php on line 551, referer: http://247autotrade.com/select_category.phpBelow is line 551 from the codingforeach ($system->SETTINGS['make'] as $key => $val)That line is taken from the following// MAKE$TPL_make = '<input type="text" name="make" size="25">' . "\n";foreach ($system->SETTINGS['make'] as $key => $val){//$TPL_item_condition .= "\t" . '<option value="' . $key . '" ' . (($key == $condition) ? 'selected="true"' : '') . '>' . $val . '</option>' . "\n";}$TPL_make .= '</input>' . "\n";I have a screenshot if anyone needs to see the screenshot of the issue Link to comment https://forums.phpfreaks.com/topic/277599-webid-php-help/ Share on other sites More sharing options...
Barand Posted May 3, 2013 Share Posted May 3, 2013 <option>s go inside <select>....</select> tags and not inside <input>...</input> tags. Link to comment https://forums.phpfreaks.com/topic/277599-webid-php-help/#findComment-1428052 Share on other sites More sharing options...
ianhaney Posted May 4, 2013 Author Share Posted May 4, 2013 Hi Sen Yeah I know but that line is commented out Link to comment https://forums.phpfreaks.com/topic/277599-webid-php-help/#findComment-1428143 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.