Help PHP Image uploader!!!

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
rolyestemonio
Forum Newbie
Posts: 19
Joined: Fri Jun 18, 2010 10:30 pm
Location: Metro Manila - Paranaque City
Contact:

Help PHP Image uploader!!!

Post by rolyestemonio »

Hi...Can anyone help me out? Can anyone give me a sample image uploader in php? That it will store to php mysql database? With 4 fields namely (id, image_name, images, descriptions).

These are my fields.

Code: Select all

<form action="" method="post">
<input name="image_name" type="text" id="image_name" value=""/>
<input type="file" name="images" id="images">
<input name="descriptions" type="text" id="descriptions" value=""/>
<input type="submit" name="Submit" value="Submit"/>
</form>
Post Reply