?
Path : /home/enviro777/public_html/admin/ |
Current File : /home/enviro777/public_html/admin/addProducti.php |
<?php include "include/header.php"; include("fckeditor/fckeditor.php"); if($_GET['id']) { $res=$obj->query("select * from category where `catId`='".$_GET['id']."'"); $cat=$obj->fetch_query($res); } if($_GET['st']=="success") $msg="Successfully Added"; if($_GET['st']=="error") $msg="This Product Name Already Exist"; ?> <!--main page--> <link href="style.css" rel="stylesheet" type="text/css"> <table cellpadding="5" cellspacing="0" border="0" class="normaltext" align="center" width="80%"> <tr bgcolor="#ccc" height="30"><td align="center" colspan="2"><strong>Add <?=$cat->catName?> Product</strong></td></tr> <tr height="40"><td colspan="2" id="error"> <?=$msg?></td></tr> <form name="product" action="insert.php" method="post" onSubmit="return validproduct()" enctype="multipart/form-data"> <tr bgcolor="#EEEEEE"> <td class="textboxcap">Model No</td> <td><input name="model" type="text" class="inputbox" value=""></td> </tr> <tr><td colspan="2"> </td></tr> <tr bgcolor="#EEEEEE"><td class="textboxcap">Title</td> <td><input name="name" type="text" class="inputbox" value=""></td> </tr> <tr><td colspan="2"> </td></tr> <tr bgcolor="#EEEEEE"><td class="textboxcap">Details</td><td> <?php $oFCKeditor = new FCKeditor('details') ; $oFCKeditor->Height ='350px' ; $oFCKeditor->Width ='680px' ; $oFCKeditor->BasePath = sBasePath ; $oFCKeditor->Value = $content ; $oFCKeditor->Create() ;?> </td></tr> <tr><td colspan="2"> </td></tr> <tr bgcolor="#EEEEEE"><td class="textboxcap">Upload Image</td><td><input name="image" type="file" class="inputboxp"></td></tr> <tr><td colspan="2"> </td></tr> <tr bgcolor="#EEEEEE"><td class="textboxcap">Upload Thumbnail</td><td><input name="imagethum" type="file" class="inputboxp"></td></tr> <tr height="40"><td colspan="2"> </td></tr> <tr><td colspan="2" align="center"> <input type="hidden" value="<?=$cat->catUrl?>" name="pUrl"> <input type="hidden" value="<?=$cat->catId?>" name="ptype"> <input name="submit" type="submit" class="submitbox" value="Submit"></td></tr> </form> </table> <!--end main page--> <?php include "include/footer.php";?>