Say I've got this:
<?php
$string = "Bill,Martin,Jo e";
$name1
$name2
$name3
?>
How do I make the $name1 equal to the first name in the list of
strings, $name2 the second and so on?
Thank You,
Trevor
<?php
$string = "Bill,Martin,Jo e";
$name1
$name2
$name3
?>
How do I make the $name1 equal to the first name in the list of
strings, $name2 the second and so on?
Thank You,
Trevor
Comment