Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #31.8K
~16.1K People Reached
Favorite Tags

5 Posted Topics

Member Avatar for cortiknee

[quote=cortiknee;54037]I need to figure out how to append an int to a string, so basically i need to convert the int to a string 1st, but I cant figure out how. :rolleyes: any help would be greatly appreciated. thank you, courtney[/quote] hope this helps : [code] int i = 42; …

Member Avatar for dverex
2
15K
Member Avatar for sickly_man

PHP has a function that dumps the contents of a file into an array. [code=php] $file = fopen("order_log_text.txt", "r+"); # could be $file = file("order_log_text.txt"); echo "<pre>"; print_r($file); echo "</pre>": [/code] if you want to continue to write or read on an open file use fwrite() or fread on the …

Member Avatar for spincycle
0
177
Member Avatar for spikes

Here are some things you might want to try. There are plenty of open source readers for excel. You can try the Java API [URL]http://www.andykhan.com/jexcelapi/index.html[/URL]. There are php readers out there that work a little better with databases and webservers, but you might need to do some digging to find …

Member Avatar for spincycle
0
161
Member Avatar for Dallos

I would use the StringTokenizer to parse up the individual strings according to the spaces; [code] String foreName, surName, number; StringTokenizer st = new StringTokenizer(str); foreName = st.nextToken; surName = st.nextToken; number = st.nextToken; [/code] then rearranging the strings [code] newStr = surName+", "+foreName+" "+number; [/code] stick those into an …

Member Avatar for titaniumdecoy
0
80
Member Avatar for paddyboy

[QUOTE=paddyboy;333342]Cheers Rhyan! I changed the first part as recommended and no problem. However the second part.....well you confused me. when i inserted the code I got the following error; [I]syntax error, unexpected '}'[/I] I may have inserted it in the wrong place but i tried a number of different variations …

Member Avatar for spincycle
0
355

The End.