I was just wondering if anyone can look an the following code and tell me if there are any obvious errors. I wrote this in DZsoft PHP editor where it works perfectly. But then when I run it on my webserver it gave me a fatal error:
Fatal error: Call to undefined function: str_split() in /home/virtual/site341/fst/var/www/html/test.php on line 12 <html> <head> <title></title> </head> <body> <?php $teststr = "5176948000"; $parsed = str_split($teststr,3); echo "$teststr<br>"; echo "$parsed[0]-$parsed[1]-$parsed[2]$parsed[3]"; ?> </body> </html> Can anyone enlighten me on this. Thanks, Aaron -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php