Search found 8 matches

by frankups1
Mon Sep 28, 2009 8:59 pm
Forum: JFileUpload
Topic: dynamic upload directory
Replies: 9
Views: 15300

Re: dynamic upload directory

that didnt work either... i think im gonna start over and see where that gets me, i have to be overlooking something
by frankups1
Mon Sep 28, 2009 7:05 am
Forum: JFileUpload
Topic: dynamic upload directory
Replies: 9
Views: 15300

Re: dynamic upload directory

i made a test page to see if the applet is sending any variables to anywhere so i forwarded and posted to that page: document.writeln('<PARAM NAME="forward" VALUE="http://mine.com/own_site_dev/testjsparams.php">'); document.writeln('<PARAM NAME="post" VALUE="http://mine.com/own_site_dev/testjsparams...
by frankups1
Sun Sep 27, 2009 6:54 pm
Forum: JFileUpload
Topic: dynamic upload directory
Replies: 9
Views: 15300

Re: dynamic upload directory

i have tried what you recommended and still nothing. this is my code, maybe im overlooking some small detail: this is the page where the applet lives: <?php session_start(); ?> <?php require('../own_site_dev/_includes/db_info.php')?> <?php require('../own_site_dev/_includes/db_connect.php')?> <?php ...
by frankups1
Sat Sep 26, 2009 5:38 pm
Forum: JFileUpload
Topic: dynamic upload directory
Replies: 9
Views: 15300

Re: dynamic upload directory

thank you for your quick response, but i need the value of lets say "firstname" to be different for every user. so instead of: <PARAM NAME="param9" VALUE="firstname"> <PARAM NAME="value9" VALUE="John"> $firstname = $_POST['firstname'] i need something like: <PARAM NAME="param9" VALUE="firstname"> <P...
by frankups1
Sat Sep 26, 2009 3:42 pm
Forum: JImageUpload
Topic: applet hides my divs
Replies: 3
Views: 9845

Re: applet hides my divs

no, the applet was in its own div, i even tried just including the applet in a separate file
by frankups1
Fri Sep 25, 2009 3:26 pm
Forum: JImageUpload
Topic: applet hides my divs
Replies: 3
Views: 9845

applet hides my divs

has anybody had any problems with divs after the applet not appearing? my right column and footer disapear when the applet is included onthe page.
by frankups1
Fri Sep 25, 2009 1:01 pm
Forum: JFileUpload
Topic: dynamic upload directory
Replies: 9
Views: 15300

dynamic upload directory

i am trying to allow users to make their own galleries and upload the images to that gallery. the first page of the gallery setup the user enters the name of their gallery, and then creates a folder on the server for that gallery in that users folder. is is possible to pass that directory name to th...
by frankups1
Tue Sep 22, 2009 9:42 pm
Forum: JImageUpload
Topic: POST and postparameters
Replies: 5
Views: 24707

POST and postparameters

to set up POST and POSTPARAMETERS is all you need to do:
document.writeln('<PARAM NAME="post" VALUE="http://mysite.com/mypage.php">');
document.writeln('<PARAM NAME="postparameters" VALUE="true');
?

and how would one go about getting the list of files that were uploaded on the php side of things.