23/10/2006, 10:23
|
| | Fecha de Ingreso: agosto-2006
Mensajes: 19
Antigüedad: 18 años, 3 meses Puntos: 0 | |
tep_draw_form es una funcion del oscommerce, la gasto de la siguiente manera:
<td valign="top" align="left" height="40">
<?php
$info_box_contents = array();
$info_box_contents[] = array('form' => tep_draw_form('quick_find', tep_href_link(FILENAME_ADVANCED_SEARCH_RESULT, '', 'NONSSL', false), 'get'),
'align' => 'left',
'text' =>'<span class="texto_pequenyo"> Producto: ' . tep_draw_input_field('keywords', '', 'size="7" maxlength="30"') . ' ' . tep_hide_session_id() . tep_image_submit('buscar_btn.jpg', BOX_HEADING_SEARCH).'</span> '.tep_image_submit('buscar_avanzado_bar ra_btn.jpg', BOX_HEADING_SEARCH_ADVANCED));
new infoBox($info_box_contents);
?></td>
y la funcion tep_draw_form tiene el siguiente codigo:
function tep_draw_form($name, $action, $method = 'post', $parameters = '') {
$form = '<form name="' . tep_output_string($name) . '" action="' . tep_output_string($action) . '" method="' . tep_output_string($method) . '"';
if (tep_not_null($parameters)) $form .= ' ' . $parameters;
$form .= '>';
return $form;
}
Creo que he escrito todo lo que me pedias... |