sicman_adrian
New Member
- Messages
- 3
- Reaction score
- 0
- Points
- 0
Hello everyone
It's my first post as you can see
I've into little trouble with a php script
View: www.sicman.x10hosting.com/addons/
Code
It's my first post as you can see
I've into little trouble with a php script
View: www.sicman.x10hosting.com/addons/
Code
PHP:
<p class="date">
<?php
$file = fopen("http://addons.eventscripts.com/sdk/getwoots/sic_snow", "r");
if (!$file) {
echo "<br>Unable to open file\n";
exit;
}
while (!feof ($file)) {
$line = fgets ($file, 1024);
echo $line;
}
fclose($file);
?>
</p>
Last edited: