$ar_kenparts[$i][kpid] => holds the value 1
if i call the array like:
ds_kenpart($ar_kenparts[$i][kpid]);
The function ds_kenpart is called with the value 1.
But inside the ds_kenpart function I neeed the string.
$ar_kenparts[$i][kpid])
which I should then be able to put in a for loop like
for (i=0; i<10;i++)
{
$ar_kenparts[$i][kpid]);
}