To check the existence of an image before uploading

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • syam
    New Member
    • Dec 2006
    • 28

    To check the existence of an image before uploading

    How do i check whether the an image and the path given by the user are valid before uploading the image using php.
  • BeRtjh
    New Member
    • Jan 2007
    • 12

    #2
    [PHP]if (is_file($url)) {
    //dont do this
    }else{
    //do this
    }[/PHP]

    Hope this helped.
    Grtz bertjh

    Comment

    Working...