Great help muralikalpana,
This is the code i got so far
$box=$_POST['box'];
while (list ($key,$val) = @each ($box)) {
echo "$val,";
}
echo "<form method=post action=''>";
foreach($domains->domainName as $value) {
echo "<input type=checkbox name=box[] value='".$value."'>";
echo " ".$value."";
}
echo "<input type=submit value=Select></form>";
There are over 2000 domain names so i was wondering if there is a way to format it in a table so once it reaches something like 200 domains the table will continue on a second column and so on...