Click to See Complete Forum and Search --> : Please help! Photo upload & multi form ?


72newbie
01-04-2006, 10:25 PM
Hi, I've been messing with this, reading and trying many things and I cannot get it to work...in a simple user friendly method.

In this example:
http://tulsa-classifieds.com/placead/merchandise.html
The name must be typed twice, and match exactly, in addition to making the user know the file extension. The "picname" is not passed from the frame to the main page.
It is not very user friendly.

In this example:
http://tulsa-classifieds.com/placead/uload.php
the name is transfered to the adpic field but it is in the form c:// in addition to either one form or the other loading.


In this example:
http://tulsa-classifieds.com/placead/newform.html
I can get either one form or the other to load but not both, and the user must know the file extension....please help

balloonbuffoon
01-04-2006, 11:20 PM
This isn't a PHP concern, so you should probably take this and repost over in the Javascript forum or something. Just one thing I have to point out about your script though-- you are trying to getElementById for your adpic field but it doesn't have an id! Sure it works in IE, because you have a name, but you need to specify an id if you want to getElementById and have it function properly in more browsers than just IE. So change the adpic field to this:
<INPUT TYPE="TEXT" ID="addpic" NAME="addpic" MAXLENGTH="25">
So if you take this over to the Javascript forum, you should find help there.

Good luck!
--Steve

72newbie
01-05-2006, 12:00 AM
I've tried this using php in a different methods....

balloonbuffoon
01-05-2006, 12:16 AM
Tried what, with what methods? Please elaborate for me! :rolleyes:

--Steve

72newbie
01-05-2006, 01:07 AM
got it, thanks!