Content Management Php



Drop Down Based on First Value



// Script to Query the Concerts Table to Display the results
/* database configuration */
$dbConfig['type']="mysql";
$dbConfig['server']="localhost";
$dbConfig['username']="******";
$dbConfig['password']="******";
$dbConfig['database']="******";
include_once("JSDropDown.class.php");
$frmObjName="JSddForm";
echo "
";
$JSdd = new JSDropDown($dbConfig);
$JSdd->DataFetch(); // Call the Function which will fetch the data.
$JSdd->createfrmObject($frmObjName); // Pass the Current Form name as the parameter
$JSdd->close_JSDropDown_database();
echo "
";
?>