No probs.
explode is a way of splitting up a string using any character you want as
the divider. For example...
Say you wanted to split a string into individual words. $string_var = "The
cat sat on the mat";
$words_var = explode(" ", $string_var);
Explode splits $string_var by the space character and returns an array of
all the words that are in $string_var.
$words_var is now an array of strings with a word in each element.
Ross
-----Original Message-----
From: KONUS [mailto:[EMAIL PROTECTED]]
Sent: 15 March 2002 19:20
To: [EMAIL PROTECTED]
Subject: [PHP-WIN] explode
What is explode...??
please explaine it in simple english with an example.
Because iam a new to PHP.
Many thanks, --ZEUS--
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php