User Profile

Collapse

Profile Sidebar

Collapse
v08i
v08i
Last Activity: May 23 '09, 09:17 AM
Joined: Nov 19 '08
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • v08i
    replied to Reading data from HTTP POST method
    in PHP
    For file uploads to work, your html form should have enctype attribute set to multipart/form-data. Like this:

    Code:
    <form action="post.php" method="POST" enctype="multipart/form-data" >
    See more | Go to post

    Leave a comment:


  • v08i
    replied to Header got an error
    in PHP
    are you getting this error:

    Cannot modify header information - headers already sent by ().......

    If it is so. then make sure that you do not have any white spaces, any echo/print statement before that. In short, no output must be sent to browser before header statement. header must be the first line in your php file afte your <?php opening tag.

    thanks
    http://vijayjoshi.org...
    See more | Go to post
    Last edited by pbmods; Nov 20 '08, 12:40 AM. Reason: Fixed link.

    Leave a comment:

No activity results to display
Show More
Working...