May I request you to please create a new thread and paste your full code (i.e. tags + Search) there for us to see?
Thanks.
Thanks.
<div>
<cms:embed 'search.htm' />
</div>
Searching for:<cms:show my_search_str /><br /><!-- for debugging -->
<cms:php>
global $CTX;
// 1st day of the current month
$CTX->set( 'my_start_on', @date( '01-m-Y', @strtotime("now") ), 'global' );
// 4th day of the current month
$CTX->set( 'my_stop_before', @date( '04-m-Y', @strtotime("now") ), 'global' );
</cms:php>
<cms:pages paginate='1' limit='10' custom_field="<cms:show my_search_str /> | PAGE_PUBLISH_DATE >= <cms:show my_start_on /> | PAGE_PUBLISH_DATE <= <cms:show my_stop_before />" >
<cms:if k_paginated_top >
<cms:set my_records_found='1' scope='global'/>
<cms:if k_paginator_required >
Page <cms:show k_current_page /> of <cms:show k_total_pages /><br />
</cms:if>
<cms:show k_total_records /> Properties Found. (Displaying: <cms:show k_record_from />-<cms:show k_record_to />)
</cms:if>
..... Displaying found data here .......
</cms:pages>
$CTX->set( 'my_start_on', @date( 'Y-m-01', @strtotime("now") ), 'global' );
$CTX->set( 'my_stop_before', @date( 'Y-m-04', @strtotime("now") ), 'global' );
<cms:pages
start_on=my_start_on
stop_before=my_stop_before
custom_field=my_search_str
paginate='1'
limit='10'
>
..
</cms:pages>
<cms:form action='' method='post'>
<cms:if k_success >
<cms:set choosed_option=frm_select 'global' />
</cms:if>
<cms:input type="dropdown" name="select" opt_values="1 | 2 | 3" />
<cms:show choosed_option />
<cms:input type="dropdown" name="select-new" opt_values="<cms:show choosed_option />" />
<cms:input type="submit" name="submit" value="Submit" />
</cms:form>