Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
2
Posts with Downvotes
1
Downvoting Members
2
0 Endorsements
Ranked #55.0K
~4K People Reached
Favorite Tags

3 Posted Topics

Member Avatar for giovannitao

<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 …

Member Avatar for B1ts
0
3K
Member Avatar for rikkitikkitavi

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?

Member Avatar for jkon
0
686
Member Avatar for pratik65

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) …

Member Avatar for B1ts
0
319

The End.