how to send text and image from a form to a different page

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
humpfrezz
Forum Newbie
Posts: 2
Joined: Fri Sep 07, 2007 1:09 am

how to send text and image from a form to a different page

Post by humpfrezz »

I am trying to let people submit their an image or two and some text to a different page on my site. I am really new with this. I would like for it to fit a certain format too...

Image in a box then text in a box to the right

Where should I start

Thanks for the help
Paul
User avatar
Christopher
Site Administrator
Posts: 13596
Joined: Wed Aug 25, 2004 7:54 pm
Location: New York, NY, US

Post by Christopher »

For file uploads, there are several upload classes in these forums if you search. And:

http://www.php.net/manual/en/features.file-upload.php

For passing data from a form to a PHP script, the values are placed in the superglobal $_POST array.

http://www.php.net/manual/en/language.v ... efined.php
(#10850)
Post Reply