?
Path : /home/enviro777/public_html/admin/ |
Current File : /home/enviro777/public_html/admin/addvideos2.php |
<?php include "include/header.php"; include("fckeditor/fckeditor.php"); if($_POST) { extract($_POST); $sql="select * from videos where videos='$videos'"; $num=$obj->count_row($sql); if($num==0) { $details=stripslashes($details); $sql="insert into videos (`sno`, `videos`) values ('', '$videos' )"; $obj->query($sql); $msg="Youtube link Successfully Updated"; } else $msg="This link Already exist"; } ?> <!--main page--> <table cellpadding="4" width="90%" cellspacing="0" border="0" class="normaltext" align="center"> <tr bgcolor="#ccc" height="30"><td align="center" colspan="2"><strong>Add Videos </strong></td></tr> <tr height="40"><td colspan="2" id="error"> <?=$msg?></td></tr> <form name="cat" action="" method="post" onSubmit="return valid()"> <tr bgcolor="#EEEEEE"> <td class="textboxcap" colspan="2">Only enter youtube watch id (highlighted) : www.youtube.com/watch?v=<mark>o-0bfleqE2g</mark> </td> </tr> <tr bgcolor="#EEEEEE"> <td class="textboxcap">example</td><td><input name="example" type="text" placeholder="o-0bfleqE2g" class="inputbox"></td> </tr> <tr height="40"><td colspan="2"> </td></tr><input name="a1" type="hidden" value="2" /> <tr bgcolor="#EEEEEE"> <tr bgcolor="#EEEEEE"> <td class="textboxcap" colspan="2">Enter here</td> </tr> <td class="textboxcap">Upload Video</td><td><input name="videos" type="text" class="inputbox"></td> </tr> <tr><td colspan="2" align="center"><input name="submit" type="submit" class="submitbox" value="Upload"></td></tr> </form> </table> <!--end main page--> <?php include "include/footer.php";?>