Confusing Splits and Explodes [SOLVED]

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
User avatar
tecktalkcm0391
DevNet Resident
Posts: 1030
Joined: Fri May 26, 2006 9:25 am
Location: Florida

Confusing Splits and Explodes [SOLVED]

Post by tecktalkcm0391 »

Ok, well I have a page that outputs text in the format of:

Code: Select all

<b>1<sup>st</sup> Place:<br></b>12 - ABCD<br><br><b>2<sup>nd</sup> Place:<br></b>1 - ERFG<br><br><b>3<sup>rd</sup> Place:<br></b>11 - EDGD<br><br><b>Time:<br></b>1.45.16
I want to make it so that I can load the text from that info different parts of Flash so I need to split it so I get winning places winner (# - [name]) and then the Time. How would I do this?
Last edited by tecktalkcm0391 on Sat Aug 05, 2006 10:55 am, edited 2 times in total.
User avatar
feyd
Neighborhood Spidermoddy
Posts: 31559
Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA

Post by feyd »

Is this a Flash question or a PHP question?
User avatar
tecktalkcm0391
DevNet Resident
Posts: 1030
Joined: Fri May 26, 2006 9:25 am
Location: Florida

Post by tecktalkcm0391 »

PHP. How could I divide it out into the different parts?
User avatar
tecktalkcm0391
DevNet Resident
Posts: 1030
Joined: Fri May 26, 2006 9:25 am
Location: Florida

Post by tecktalkcm0391 »

I got it to do what I wanted it to after I though about it... lol...
Post Reply