Weishaupt
Yeah im gonna start work on the rotary comp as soon as i finish this :)
Few more questions if its not too much trouble
Sending the data -
Curretly im sending it like this : "http://blablabla.com/post.php?name=BlaBlaBla&log="&int(tokenat(state,0,","))"
But " log="&int(tokenat(state,0,",")) is only the x.. so how do i send the rest?
Playing it back -
How am i supposed to do this?
sprite.SetX(Ajax.LastData)
sprite.SetY(Ajax.LastData)
sprite.SetAngle(Ajax.LastData)
About the naming thing im obsessed with how do i do this -
were sending a username: [name] in the PHP script, But say I have a scoreboard, how do i then search for the same name?
Would something like this work?
<?php
$username = $HTTP_GET_VARS[name];
$log = $HTTP_GET_VARS[log];
$mystring = $HTTP_GET_VARS[CurrentUser];
$findme = $mystring;
$pos = strpos($mystring, $findme);
// Note our use of ===. Simply == would not work as expected
// because the position of 'a' was the 0th (first) character.
if ($pos === false) {
echo "The string '$findme' was not found in the string '$mystring'";
} else {
echo "The string '$findme' was found in the string '$mystring'";
echo " and exists at position $pos";
}
?>
But then how would i use this string to display the data of the current user?