модуль mod_search. как сделать автозаполнение строки поиска, чтобы в нём был тот же запрос, что и введённый в поисковике?
Ответ: модуль mod_search как сделать автозаполнение? Что-то типа того Код (PHP): $output = '<input name="searchword" id="mod_search_searchword" maxlength="20" alt="search" class="inputbox'. $moduleclass_sfx .'" type="text" size="'. $width .'" value="'. $text .'" onblur="if(this.value==\'\') this.value=\''. $text .'\';" onfocus="if(this.value==\''. $text .'\') this.value=\'\';" />'; на Код (PHP): $searchword = strval( mosGetParam( $_REQUEST, 'searchword', '' ) ); $searchword = trim( stripslashes( $searchword ) ); if ($searchword) $mtext=' value="'. $searchword .'" '; else $mtext=' value="'. $text .'" onblur="if(this.value==\'\') this.value=\''. $text .'\';" onfocus="if(this.value==\''. $text .'\') this.value=\'\';" '; $output = '<input name="searchword" id="mod_search_searchword" maxlength="20" alt="search" class="inputbox'. $moduleclass_sfx .'" type="text" size="'. $width .'" '.$mtext.' />';