Search found 2 matches

by Ghezus
15 Oct 2009, 11:17
Forum: TMW Classic
Topic: Should we break backward compatibility of the TMW client?
Replies: 33
Views: 4941

Re: Should we break backward compatibility of the TMW client?

It sounds like a necessary evil. Ubuntu people who cannot compile are way too big of a group to just eliminate. As long as they have the option (download source here, or download full game w/all dependencies here), I am sure most wont mind having all of the dependencies. The population would grow w...
by Ghezus
14 Oct 2009, 20:54
Forum: Web Development
Topic: [ask]php online code
Replies: 2
Views: 4003

Re: [ask]php online code

You could use this little snippet. It reads the value from the TMW-site and removes the HTML tags so you can make it fit your site.

<?php
$status = file_get_contents('http://server.themanaworld.org/status.php');
echo strip_tags($status);
?>

Totally untested but it should work.