Hello,
Maybe I do not understand the concept behind a constant definition but I have been trying to define a default location for file uploads:
<?php
// Define the upload path
define('UPLOADPATH', 'C:\wamp\www\web\images_files');
Every time I try to run the script:
Notice: Use of undefined constant UPLOADPATH - assumed 'UPLOADPATH' in C:\wamp\www\web\index.php on line 31
I'm not sure what i'm doing wrong here...