File: /home/httpd/html/seekya.com/DEAD/beta/submit.php
<?session_start();
include("header.php");
$sql="Select * from category_master where category_status=1 order by category_name";
$cmdcat = mysql_query($sql);?>
<h1><strong>Submit Your Video</strong></h1>
<!--Part one of the upload -->
<?if ($_GET["stage"]==1 || $_GET["stage"]=='')
{?>
<form name=video method=post action="">
<p>Title Of Video :<br />
<input name="video_title" id="#videotitle" type="text" size="35">
</p>
<br />
<p> Few Words about it :<br />
<textarea name=video_description id="videodescription" rows=8 cols=50 style="overflow:hidden;"></textarea>
</p>
<br />
<p>Category Best Fits :
<select name=video_category id="videocategory">
<?while ($rscat = mysql_fetch_array($cmdcat))
{?>
<option value="<?=$rscat["category_id"]?>">
<?=$rscat["category_name"]?>
</option>
<?}?>
</select>
</p>
<br>
<p> <input type=submit name=submitvideo class=button value="Next Step >>">
</p>
<br>
<br>
<strong><u>IMPORTANT DISCLAIMER</u><br>
This site does not promote or condone any illicit, illegal, obscene, pornographic, dangerous, or exploitative acts of any kind. Do not upload that crap it will be deleted and not approved for listing</strong>
</p>
</form>
<!--Part two of the upload -->
<?}
if ($_GET["stage"]==2)
{?>
<?if ($_GET["error"]==1)
echo "<font class=text><strong><font color=red>Video Can be only in .WMV or .ZIP<strong></font></font>"?>
<?if ($_GET["error"]==2)
echo "<font class=text><strong><font color=red>Image Can be only in .JPG or .GIF<strong></font></font>"?>
<?if ($_GET["error"]==3)
echo "<font class=text><strong><font color=red>Please Upload Video File.<strong></font></font>"?>
<form name=video2 method="post" enctype="multipart/form-data">
<strong>Upload the Image & .WMV File for your video.<br>
</strong><br><br>
<nobr>Video File (.WMV File) :(Required*)</nobr><br>
<input name="video_file" type="file" class="textbox" size="35"><br><br>
Message for Webmaster : <textarea name=webmaster class=textarea rows=8 cols=50 style="overflow:hidden;"></textarea><br><br>
<input type=submit name=submitvideo2 class=button value="Upload Video "><br><br>
</form>
<u>NOTE</u> : Alternate you can FTP video to our site using login given below.(Mention the name of video in above message box)<br><br>
Anonymous FTP Server :ftp@.com<br><br>
Anonymous FTP LOGIN :anonymous@.com<br><br>
Anonymous FTP Password :anonymous@.com<br><br>
<!--Part three of the upload and final -->
<?}
if ($_GET["stage"]==3)
{?>
</form>
Your Video is uploading,once approved it will be available on website.<br><br>
<br><br>
<?}?>
<!--end part 3 -->
<?include("footer.php");
?>
<script>
function openWin(argURL, argSize) {
window.open(argURL, "x_win" + (new Date()).getTime(), "resizable=yes,scrollbars=yes," + argSize);
}
</script>