|
|
|
.......................
Loading
.......................
|
<%
StatementPromNews = ConnInfo.prepareStatement("select dailytour.*, dailytour_type.tag dtt_disp, travel_type.tag tt_disp from dailytour, dailytour_type, travel_type where dailytour.dtt_id = dailytour_type.dtt_id and dailytour.tt_id = travel_type.tt_id and dailytour.lang = '" + lang + "' and dailytour.dailytour_id = " + request.getParameter("mi") + " ");
PromNews = StatementPromNews.executeQuery();
PromNews_hasData = PromNews.next();
while ( PromNews_hasData ) {
%>
 |
|
<%=(((Info_data = PromNews.getObject("title"))==null || PromNews.wasNull())?"":Info_data)%>
|
|
|
|
No. of Days:<%=(((Info_data = PromNews.getObject("day_no"))==null || PromNews.wasNull())?"":Info_data)%>
No. of Nights:<%=(((Info_data = PromNews.getObject("night_no"))==null || PromNews.wasNull())?"":Info_data)%>
<%=(((Info_data = PromNews.getObject("dtt_disp"))==null || PromNews.wasNull())?"":Info_data)%>
Price: <%=(((Info_data = PromNews.getObject("price"))==null || PromNews.wasNull())?"":Info_data)%> €
|
" border="0"> |
|
Included in price:
<%=(((Info_data = PromNews.getObject("included"))==null || PromNews.wasNull())?"":Info_data)%>
Not Included in price:
<%=(((Info_data = PromNews.getObject("nonincluded"))==null || PromNews.wasNull())?"":Info_data)%>
|
|
|
|
<%=(((Info_data = PromNews.getObject("more_info"))==null || PromNews.wasNull())?"":Info_data)%> |
|
|
|
|
|
 |
<% PromNews_hasData = PromNews.next();
}
PromNews.close();
StatementPromNews.close();
%>
|
|
|
|
|