Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Problem writing ASCII to file

Custom Title Activated
Loyal Member
Joined
Mar 26, 2012
Messages
1,465
Reaction score
131
I am trying to output
PHP:
in a .tad file for a game I am hosting but, everytime that I write it, it only shows space Ý.
Is there anyone that has an idea of what I am doing wrong?

PHP:
<?php
$lvla = ".Ý";
$frz = fopen("C:\\user.tad","r+")or die("Account not found!");
fseek($frz, 72, SEEK_SET);
fwrite($frz,$lvla,2) or die("Error1");
fclose($frz);
?>

Thank you
 
Back
Top