That is what im trying to do … i think it’s clear:
<?php
$all_cats = wp_list_categories('hide_empty=0&title_li=&child_of=4');
foreach( $all_cats as $cat ) :
?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
<ul>
<?php
$stringGetPosts = "numberposts=0&category='".the_ID()."'4&orderby=menu_order&order=ASC";
get_posts($stringGetPosts);
?>
</ul>
</li>
<?php
endforeach;
?>