Dear all.
I am inthe process of uploading files, which I am doing successfully, however I can not read them because of the permisions associated with the file.
A kind phpbuilder suggested I used CHMOD and I have read the PHP file and have thoroughly scratched my head.
My up loading text is
$destination = '/home/precs/PI/'.$FILES['pix']['name'];
$temp_file = $FILES['pix']['tmp_name'];
move_uploaded_file($temp_file,$destination);
echo "<p><b>The file has successfully uploaded:</b>
{$FILES['pix']['name']}
({$FILES['pix']['size']})</p>";
but where do I and how should I write the chmod line..
Please be kind am a new to this hobby..