Why won't this part of the code work :
<?php
$file = 123456.xml;
$xmlfile = fopen("/mydomain/www/$file", "r");
$readfile = fread($xmlfile ,40000);
....
it just gives a blank screen.
but if I change it to this it does work :
<?php
$xmlfile = fopen("/mydomain/www/123456.xml", "r");
$readfile = fread($xmlfile ,40000);
...
how do I correct this?
thanx