Search results

  1. J

    enctype not working....

    no... problem is not logical operators... and (this or this) is same as (this || this) becouse of brackets, and of course it is logical problem is with enctype-not with logical operators.. problem is form with enctype....WHY
  2. J

    enctype not working....

    all errors are like> File does not exist: /home/.../public_html/500.shtml, referer: ..../t.php File does not exist: /home/.../public_html/favicon.ico, referer: ..../t.php only time is different (logical) i never use favicon.ico or 500.shtml (i guess 500.shtml is for some error code-maybe...
  3. J

    enctype not working....

    you are not righ... because c=(a or b) is same as c=(a || b) becouse of brackets but...thats not problem.... even if i remove or-if i put only <html> <head> <title>test</title> </head> <body> <?php if(!isset($_POST["sub"])){ ?> <form action="t.php" method="post"...
  4. J

    enctype not working....

    even this simple code <html> <head> <title>t</title> </head> <body> <?php if(!isset($_POST["sub"]) or ($_POST["sub"]!="OK")){ ?> <form action="t.php" method="post" enctype="multipart/form-data"> <input type="file" name="f"><br> <input type="Submit" name="sub"...
Top