Mist hope this helps...
PHP Code:
$getthebanners = $DB_site->query( "SELECT * FROM artists" );
while( $boohoo = $DB_site->fetch_array( $getthebanners ) )
eval( "\$theartists.= \"".gettemplate( 'displayartistsbit' )."\" ;" );
eval( "dooutput( \"".gettemplate( 'displayartists' )."\" );" );
exit;
you need the create a template "displayartistsbit" and put in there the info you want to repeat... then the "displayartists" template is the main template... in which you put the "$theartists" to echo the loop that you created...
hope that helps Mist...
regards,
g-force2k2