the Plugin fot the Flash MP3 Player
I configured playlists:
$playlist = array(
'1' => 'http://mydomain.com/singer/playlist.m3u',
'2' => 'list1.m3u',
'3' => 'list2.m3u',
'4' => 'list3.m3u'
// And so on....
);
Instead of the playlist.xml I did insert "em3uplugin.php?m3u=1"
but how the script creates a XML Playlist with the M3U file.!!!
**
when i change playlist.xml to **em3uplugin.php?m3u=1** into the action script , the mp3player calls the php script (em3upulgin.php )
is the list1.m3u the same playlist.xml ! do we change *.xml to m3u !
this pulgin was nor clear !! can sombody tell me how that does work step by step !

If you would please post links to your html page and to em3uplugin.php it would be a lot easier to help you.
To answer your questions:
You enter a path or URL to your existing m3u playlists in the $playlist array. Test the URL in your browser ( copy/paste ) to make sure that it is correct.
You change "playlist.xml" to "em3uplugin.php?m3u=1" so your flashvars line would look like this:
flashvars:"file=http://my.domain.com/path-to-file/em3uplugin.php?m3u=1&...the rest of your flashvars.
Again, test the URL to the em3uplugin.php by putting it into your browser ( copy/paste ) and see if a valid XSPF playlist is returned. It's always best to copy/paste the URLs because then any typos, etc., will be apparent when it doesn't work. Of course, always substitute your actual domain name and the actual path-to-the-file for "my.domain.com" and "path-to-file".
If you post links, I can check your files and give you a more detailed answer.