Flash chat

i ve almost finished my flash chat, i only need one thing:

i have to delet the last letters of a textfile (like to cut off the end), in order to keep the file size small…

has someone a php-script that does that? its very important to me to finish that chat…

Howdy…

I don’t know how deleting the last character of the string goes with the Flash chat, but you can use substr() function to do that… Get the whole content of the text file into the variable and apply the substr() function…

Here is the example of how you can do according to the PHP manual…

<?php
     $rest = substr("abcdef", 0, -1);  // returns "abcde"
?>

Hope this is what you are looking for… :wink:

wh000, thanx, thats it!!! ill finish the chat later, ill post the url…

Thanks… Looking forward to see what you got there… :wink:

it causes a lot of traffic, about 1 meg per 10 minutes, so i do not want to run it on my own server, but in the next few days ill have my own domain and will transfer my site to a professional webhost-company ( www.webserver.at ).

as soon as i got that, ill post it here…

:wink: