Hello, I am sure for the experianced php folks this should be a easy one. I have a basic knowledge of php (cut & paste 😃 ), no but really it is very limited knowledge. I have this code that is a form field and has a graphic button next to it. Well in FF it looks ok as it places the button below the feild. In IE though it puts in next to the box so therefor it stretches the table it is in and makes it look like crap. So I need to put a break in it to place the button on the next line so it will place the button under the field. Now I know in HTML you use <br /> but I don't know how to place this in the code without it throwing errors.
Here is the code.
tep_href_link(FILENAME_TELL_A_FRIEND, '', 'NONSSL', false), 'get'),
'align' => 'center',
'text' => tep_draw_input_field('to_email_address', '', 'size="10"') . ' ' . NEED BREAK HERE tep_image_submit('button_tell_a_friend.gif', BOX_HEADING_TELL_A_FRIEND) . tep_draw_hidden_field('products_id', $HTTP_GET_VARS['products_id']) . tep_hide_session_id() . '<br>' . BOX_TELL_A_FRIEND_TEXT);
If anyone can help me out that would be great....
-Thanks