hi LordShryku,
its working.. thank you so much for the help...
i have given the code like this...
<select name="planguages[]" size="5" multiple id="planguages">
and when i retrive......
<?
$arr=$_POST["planguages"];
$no=count($arr);
?>
<p>Known Programming languages are
<?
for($i=0;$i<$no;$i++)
{
print $arr[$i]." ";
}
?></p>
and this is working pretty fine..
thank you for the help ...
regards
Jibosh