<?php

include "../../../classes/Database.php";
include "../../../classes/Connection.php";
include_once "../../../includes/bootstrap.php";
include "../../../classes/Category.php";
include "../../../classes/Products.php";
include "../../../classes/ProductsOption.php";
include "../../../classes/Options.php";
include "../../../classes/OptionsCategory.php";
include "../../../classes/AdminAction.php";
include "../../../includes/security.funcs.inc";
include_once "../../../includes/Pagination.php";
include_once 'thumbnail/thumbnail_images.class.php';
include_once 'functions/myFunctions.php';
$category_options = OptionsCategory::displayAllOptionsCategory();
$product_id = $_REQUEST['Id'];
if (isset($_POST['submit'])) {
    include "upload_class.php";
    //classes is the map where the class file is stored (one above the root)
    $max_size = 1024 * 250;
    // the max. size for uploading
    $my_upload = new file_upload();
    if ($_FILES['image']['name'] != '') {
        $my_upload->upload_dir = "../../../products_image/";
        // "files" is the folder for the uploaded files (you have to create this folder)
        $my_upload->extensions = array(".jpeg", ".gif", ".bmp", ".jpg", ".png");
        // specify the allowed extensions here
        // $my_upload->extensions = "de"; // use this to switch the messages into an other language (translate first!!!)
        $my_upload->max_length_filename = 50;
        // change this value to fit your field length in your database (standard 100)
        </li>
         <li>
          <label for="position">Position</label>
          <input type="text" id="position" name="position">
        </li>
      </ul>
      
        
    </fieldset>
    
    <fieldset style="width:1065px;">
      <legend>Options Panel</legend>
      <ul>
        
        <? 
			$optionsCat = OptionsCategory::displayAllOptionsCategory();
			foreach($optionsCat as $optionsCats) { 
				$option = Options::displayAllOptions($optionsCats->fldOptionsCategoryID);
		?>
        <li>
          <label for="title"><strong><?php 
echo $optionsCats->fldOptionsCategoryName;
?>
</strong> : &nbsp;&nbsp;</label>
          <?
		  	foreach($option as $options) { 
		  ?>
          		<input type="checkbox" name="options[]" value="<?php 
echo $optionsCats->fldOptionsCategoryID . ';' . $options->fldOptionsID;
?>
" style="width:10px; display:inline;"> <?php