|
I already had how to grab the resolution size from
the clients end..
and i found out how to grab the file info and paste
it to the screen.
<?php
if (isset ($Resolution)) { $res = $Resolution; } else { $res = "getres"; } $wfn = "/my/website/at/hexidecimal/main.$res.txt"; if($wbs = @fopen("$wfn", "r")) { while (!feof ($wbs)) { $buffer = fgets($wbs, 4096); echo $buffer; } } else { echo ("Unable to locate file. [Error Line: 5, File Line: 4]<br>\n"); } ?> this works perfect, just finishing off cookies
now.
thanks for your help anywayz guys...
you never know ill prob be askign some questions
again soon, hehehe
|
