Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #72.8K
2 Posted Topics
From [url]http://php.net/manual/en/function.substr.php[/url] echo substr('abcdef', 1); // bcdef echo substr('abcdef', 1, 3); // bcd echo substr('abcdef', 0, 4); // abcd echo substr('abcdef', 0, 8); // abcdef echo substr('abcdef', -1, 1); // f echo substr('abcdef', 2, -1); // cde HTH
Open the page on FireFox and click Tools > Error Console and see what errors you get. I guess it is because the script in embedded in the span and fail to fire. Try write the scripts on the main page ... but that kinda defeat your purpose.
The End.
kc130