i have few video filepath in db and have load them to jsp call viewvideo.jsp each video as links. i wanna play the video which i click jest using java and html
here the cord in viewvideo.jsp
<%
try {
ResultSet resulset = jdbc.getdata("select * from video");
%>
<form >
<table >
<%
while (resulset.next()) {
%>
<tr>
<td><input type="hidden" value="play" name="<%=resulset.getString(3)%>" ><a href="twovedio.jsp"><%=resulset.getString(3)%></a></td>
</tr>
<%}%>
</table>
</form>
<%} catch (Exception e) {
}%>
here the cord in twovedio.jsp
<% String video_path = request.getParameter("name");
if (video_path != null) {
%>
<object
width="545"
height="350"
data="http://releases.flowplayer.org/swf/flowplayer-3.1.5.swf"
type="application/x-shockwave-flash"
>
<param
name="movie"
value="http://releases.flowplayer.org/swf/flowplayer-3.1.5.swf"
/>
<param
name="allowfullscreen"
value="true" />
<param
name="allowscriptaccess"
value="always"
/>
<param
name="flashvars"
value='config={"plugins":{"pseudo":{"url":"flowpla yer.pseudostreaming-3.1.3.swf"},"controls":{"backgroundColor":"#000000 ","backgroundGradient":"low"}},"clip":{"provid er": "pseudo","url":"Upload_video/<%= video_path%>"},"playlist":[{"provider":"pseudo","url":"Upload_video/<%= video_path%>"}]}' />
</object>
<%} else {
%>
<h1>[[[redacted]]]</h1>
<%}%>
error says String video_path = request.getParameter("name"); parameter value is null video doesn't play
please help i am really new to thesethings