1
Web Oriented Coding / Re: [PHP] Array
« on: August 22, 2013, 11:17:19 pm »Code: [Select]
<?php
$str = "7!3!9!05!2401!64!05!11!64!4!343!2!11!9!04";
$newstr = explode('!',$str);
for($i = 0; $i < count($newstr ); $i++)
{
echo $d[$i] . " ";
}
?>