trying to create file using fopen() and result is permissions denied.
$myFile=fopen($varName . ".php","w");
i get an error with this line saying permission denied....why? and how do i fix it?
you need to gibe the directory the correct writing permissions,
you could cdmod to directory to 777 or simular
yep, got it. thanks