TalkPHP
 
 
Account Login
Latest Articles
» The basic usage of PHPTAL, a XML/XHTML template library for PHP
» Vulnerable methods and the areas they are commonly trusted in.
» Simple way to protect a form from bot
» The Basics On: How Session Stealing Works
» How to keep your forms from double posting data
IRC Channel
IRC Speech Bubble Join the friendly bunch on IRC...
(#TalkPHP on Freenode)

...Also available via a web interface.

See this thread for information on the TalkPHP Free Hugs Initiative™. Subject to availability.
Associates
Associates
CSS Tutorials
Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old 10-12-2009, 08:21 PM   #1 (permalink)
Jmz
The Acquainted
 
Join Date: Oct 2007
Location: Newcastle, UK
Posts: 113
Thanks: 3
Jmz is on a distinguished road
Default Split a string

I have a string that will look like:

Code:
Line 1;Line 2;Line 3
Basically the words will be separated by a semi-colon. How can I split this string and then display them like:

Code:
<li>Line 1</li>
<li>Line 2</li>
<li>Line 3</li>
__________________
Free CSS Tutorials
Send a message via MSN to Jmz
Jmz is offline  
Reply With Quote
Old 10-12-2009, 08:38 PM   #2 (permalink)
Jmz
The Acquainted
 
Join Date: Oct 2007
Location: Newcastle, UK
Posts: 113
Thanks: 3
Jmz is on a distinguished road
Default

Ooops, was easier than I thought! Incase anybody else needs the same thing.

PHP Code:
$string 'Line 1;Line 2;Line 3;';
$string explode(';',$string);
foreach (
$string as $value){
echo 
"<li>".$value."</li>";
}
unset(
$value); 
__________________
Free CSS Tutorials

Last edited by Jmz : 10-19-2009 at 12:23 PM.
Send a message via MSN to Jmz
Jmz is offline  
Reply With Quote
Old 10-12-2009, 09:41 PM   #3 (permalink)
Wizard
Top Contributor 
 
Village Idiot's Avatar
 
Join Date: Sep 2007
Posts: 1,299
Thanks: 17
Village Idiot is on a distinguished road
Default

That is probably the best way to do it. Thanks for posting the result when you found it.
__________________

Village Idiot is offline  
Reply With Quote
Old 10-13-2009, 09:42 PM   #4 (permalink)
The Wanderer
 
adham is me's Avatar
 
Join Date: May 2009
Posts: 19
Thanks: 4
adham is me is on a distinguished road
Default

you are really a good man seeking spreading knowledge

thanks for posting solution
__________________
I love you NASSER
adham is me is offline  
Reply With Quote
Old 10-13-2009, 10:33 PM   #5 (permalink)
That guy
 
cachepl0x's Avatar
 
Join Date: Sep 2009
Location: San Antonio, TX
Posts: 24
Thanks: 0
cachepl0x is on a distinguished road
Default

You forgot an "s" on line three in "$string." ;)

Nice find.
cachepl0x is offline  
Reply With Quote
Old 10-19-2009, 12:24 PM   #6 (permalink)
Jmz
The Acquainted
 
Join Date: Oct 2007
Location: Newcastle, UK
Posts: 113
Thanks: 3
Jmz is on a distinguished road
Default

Thanks for that, I've updated it incase somebody wants to use it.
__________________
Free CSS Tutorials
Send a message via MSN to Jmz
Jmz is offline  
Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Accessing Lenght of a string in Javascript with jQuery EyeDentify Javascript, AJAX, E4X 4 09-23-2009 10:00 PM
who can tell me why? kuigg Absolute Beginners 9 12-02-2008 02:14 AM
array elements into variables and values Dave Absolute Beginners 7 06-20-2008 01:56 PM
Strange string comparison problem Jelmer General 0 05-23-2008 04:00 PM
Quicker String Verification Jay Tips & Tricks 16 12-30-2007 01:47 PM


All times are GMT. The time now is 01:18 AM.

 
     

Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0
Inactive Reminders By Icora Web Design