- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 2
- Posts with Downvotes
- 1
- Downvoting Members
- 2
3 Posted Topics
Re: <html> <head> </head> <body> <p> <form name="uploadImage" action="upload.php" method="post" enctype="multipart/form-data"> <!--As diafol said, you'll need multipart/form data. It wouldn't work without that attribute--> Select the image:<br /> <input type="file" name="img" /> <input type="submit" value="Upload" /> </form> </p> </body> </html> "upload.php": <?php $myId = $_POST['id']; //Let's assume that you have an … | |
Re: Make sure that you don't have any code before the call to session_start(); because if you have, it will be an error because there are headers already sent. Can you tell us what's the error message? Or there is no error? | |
Re: Dim numberOfElements As Integer numberOfElements = 2 'Remember that if you define an array with TWO elements, it's 0 and 1 for VB, so you'll start counting from 0. Don't forget this. This array has ONE dimention Dim myArray(numberOfElements) As String 'Dim + name(elements) + As + data type myArray(0) … |
The End.