Thread: new to talkphp
View Single Post
Old 04-27-2009, 11:43 AM   #7 (permalink)
sketchMedia
The Prestige
Advanced Programmer Top Contributor Good Samaritan 
 
sketchMedia's Avatar
 
Join Date: Oct 2007
Location: Manchester, UK
Posts: 854
Thanks: 32
sketchMedia is on a distinguished road
Default

bash Code:
#!/bin/sh
welcome=(welcome to TalkPHP!,  nickyoung)
for((i=0;i<${#welcome};++i));
do
    retStr="${retStr} ${welcome[${i}]}"
done
echo ${retStr}
exit 0
Can't beat a bit'o bash!
__________________
mysql> SELECT * FROM `users` WHERE `users`.`clue` > 0;
Empty set (0.00 sec)
sketchMedia is offline  
Reply With Quote
The Following User Says Thank You to sketchMedia For This Useful Post:
nickyoung (04-28-2009)