I can't seem to get the fopen thing to work, or otherwise, I'm just stupid if it is but I don't know it.
Here is the code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<HEAD>
<title>Open the file</title>
</HEAD>
<body>
<?php
$fp = fopen("http://www.mydomain.org/order.txt", "a+");
fclose($fp);
?>
</body>
</html>
If that should work, how would I be able to tell, or should I add something to see if it works.
Thanks