This may sounds silly but I need help on file check. Something like
How to do this? Thanks.VB Code:
if file_not_exists("filename")
Printable View
This may sounds silly but I need help on file check. Something like
How to do this? Thanks.VB Code:
if file_not_exists("filename")
file_exists()
PHP Code:if (! file_exists('filename'))
Whew, almost got it. Thanks, Adam.