Hello,
i am usin code of checkbox in select box and i am showing data dynamically of tat select box conatin with checkbox. if i check on checkbox then that cherckbox value must be going to another page . i am diong many chnages in js file but onclick event off checbox contain i m not find the value means if i am click on checkbox then it doesn’t show me anything. please give me solution.
below is the my page
Checkbox Select
Checkbox Select
<?php
header(“Content-type:text/xml”);
ini_set(‘max_execution_time’, 7000);
require_once(‘config.php’);
print("<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>");
?>
<?php
$link = mysql_pconnect($mysql_host, $mysql_user, $mysql_pasw);
$db = mysql_select_db ($mysql_db);
if (!isset($_GET[“pos”])) $_GET[“pos”]=0;
//print one level of the tree, based on parent_id
//function getDataFromDB($mask){
$sql = “SELECT DISTINCT item_nm FROM countries”;
// echo “ppp”. $sql.= " Order By item_nm LIMIT “. $_GET[“pos”].”,100";
print("");
$res = mysql_query ($sql);
if($res){
while($row=mysql_fetch_array($res)){
print("<option value="".$row[“item_nm”]."">");
print($row[“item_nm”]);
print("");
}
}else{
echo mysql_errno().": “.mysql_error().” at “.LINE.” line in “.FILE.” file
";
}
print("");
//}
?>
//v.2.5 build 91111
/*
Copyright DHTMLX LTD. sales@dhtmlx.com
*/
please give me solutuion of this problem.