• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

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