hey Plushpuffin
it works wonderfully
okay, so now the cruncher:
within these lists, there are four seperate input fields to be put into each <li> </li>
1) Track authors
2)Track titles
3)Track subtitles
4)track record label
formatted as such:
1) Track Author 1 'Track title 1' Track subtitle 1 (Track record label 1)
1) Track Author 2 'Track title 2' Track subtitle 2 (Track record label 2)
1) Track Author 3 'Track title 3' Track subtitle 3 (Track record label 3)
1) Track Author 4 'Track title 4' Track subtitle 4 (Track record label 4)
the actual finished page should look like this:
1) PROTOTYPE 'La Caldera' Thomas Penton Remix (Tune Inn)
2) LAYO & BUSHWACKA! 'Shining Through' Album Sampler Part 1 (XL Recordings)
3) ROUTE 66 'Disco Thump' Broke Down EP (Nightshift)
4) DIZZY & JADO 'Shake It Fast' Original Mix (Doubledown)
5) MACELO CASTELLI 'Jungle Man' (Low Pressings)
6) ONIONZ & MASTER D 'Can't Turn to Momma' The Fading Memories EP (Doubledown)
7) HIPP-E 'Foolish Ways' Original (Doubledown)

AUGUST 'Tongue Tied (In the Congo)' Dark Tongues (Thunk)
9)SNEAKER PIMPS 'Bloodsport' Dylan Ryhmes Remix (10 Kilo)
so far with the code you gave me, I was able to out put this:
1) TEST ONE
2) TEST TWO
3) TEST THREE
4) TEST FOUR
5) TEST FIVE
--etc.--
This is utilizing only the first input field (<Field: CustomField_trackauthor>)
your code:
<ol>
<PerlCode>
$CustomField_trackauthor =~ s~\A[\;\s]*~~;
$CustomField_trackauthor =~ s~[\;\s]*\Z~~;
$CustomField_trackauthor =~ s~[;\s]*;~\;~g;
my @somethings = split( /\;/, $CustomField_trackauthor );
foreach $_ (@somethings) {
$newshtml .= qq~<li>$_</li>~;
}
</PerlCode>
</ol>
so basically I can see that the $_ stands for the input variable which equals @somethings, but I'm wondering if it's possible to add in the other three input fields withing that configuration
something like this?:
<ol>
<PerlCode>
$CustomField_trackauthor =~ s~\A[\;\s]*~~;
$CustomField_trackauthor =~ s~[\;\s]*\Z~~;
$CustomField_trackauthor =~ s~[;\s]*;~\;~g;
my @somethings = split( /\;/, $CustomField_trackauthor );
$CustomField_tracktitle =~ s~\A[\;\s]*~~;
$CustomField_tracktitle =~ s~[\;\s]*\Z~~;
$CustomField_tracktitle =~ s~[;\s]*;~\;~g;
$CustomField_tracksubtitle =~ s~\A[\;\s]*~~;
$CustomField_tracksubtitle =~ s~[\;\s]*\Z~~;
$CustomField_tracksubtitle =~ s~[;\s]*;~\;~g;
$CustomField_tracklabel =~ s~\A[\;\s]*~~;
$CustomField_tracklabel =~ s~[\;\s]*\Z~~;
$CustomField_tracklabel =~ s~[;\s]*;~\;~g;
foreach $_ (@somethings) {
$newshtml .= qq~<li>$_</li>~;
}
</PerlCode>
</ol>
see, I'm thinking I need to define each of the different fields but I get stuck on how to combine each of these CustomFields into the equation:
foreach $_ (@somethings) {
$newshtml .= qq~<li>$_</li>~;
}
where the
$newshtml .= qq~<li>$_</li>~;
would look more like this:
$newshtml .= qq~<li>$_ &'<CustomField_tracktitle>' &<CustomField_tracksubtitle> &(<CustomField_tracklabel>)</li>~;
??????????
