Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

array split return errors because of the quotation marks

Status
Not open for further replies.

123456programmer

Programmer
Aug 3, 2003
105
AU
hey, my script won't work...

I have one Dynamic text field (member_list, in which there's a html source code.
and there's an other Dynamic text field (All_member)

this is my script, easy ay. but it won't work and it allways returns an error:

member = member_list.split(&quot;<tr align=&quot;center&quot;>&quot;);
trace(member.length);
for (z=0; z<member.length; ++z) {
All_member = (member[z]);
}
thanks in advance
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top