%@ page contentType = "text/html;charset=Big5" %>
<%@ page import = "java.sql.*" %>
<%@ include file = "tra_db.jsp"%>
<%
String trip_name = request.getParameter("x");
String y = request.getParameter("y");
int trip_days = Integer.parseInt(y);
try{
String m_sql = "select spots_name,spots_sn,trip_list_name from trip_list,spots WHERE spots.spots_click = 1 and spots.spots_sn = trip_list.trip_list_spots_sn and trip_list.trip_list_name ='"+trip_name+"'";
Statement m_stmt = con.createStatement();
ResultSet m_rs = m_stmt.executeQuery(m_sql);
%>
|
|
|
| |

讓旅遊者鍵入基本旅遊資料(非個人資料),讓系統處理後續手冊部份之便。
鍵入的資料有名稱、交通方式、天數
下一頁
|
| |
| |
| |