<?php 
 
 
require_once('SQLDropDown.php');
 
 
$theObjects = new SQLDropDown(true);
 
 
$article_category_id = 1;
 
$sql_query = 'SELECT * FROM Article_Categories';
 
 
echo $theObjects->sql_drop_down($sql_query,'video_category_id','category_description','category_id', $article_category_id); 
 
 
 
?>
 
 |