Page is a not externally linkable
- Code, Content, and Presentation
-- PHP Server Side Scripting
---- Seperate Digits with Forward Slashes


MattAU - 2:23 am on Sep 1, 2008 (gmt 0)


You can do it pretty easily with a custom function.

function slash($var)
{
$var_slash = '';
for($i = 0; $i < strlen($var);$i++)
$var_slash .= $var[$i].'/';
return $var_slash;
}


Thread source:: http://www.webmasterworld.com/php/3735698.htm
Brought to you by WebmasterWorld: http://www.webmasterworld.com