Problem importing categories and sub-categories

You have error in your PHP. This array('parent', $id_parent) will produce numeric array with two values – string parent and value of $id_parent.

What you actually need is array( 'parent' => $id_parent ) which will produce correct associative array with one entry of key parent and value $id_parent.