One more question i need to make an array of items i type in a form so i used $_POST
but it works strangely it puts the entire array in pos 0
so arr has the entire "4","6","aga","aza","goo","1" in arr[0] but arr2 which is hard coded works fine why is that?
$arr = array($_POST['pname']);
$arr2 = array("4","6","aga","aza","goo","1");