dan_t Posted July 10, 2010 Share Posted July 10, 2010 I know very little about javascript. How do I get this script to put photos in a folder? <form name="form1" enctype="multipart/form-data" method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>"> <label for="upload[]">File 1:</label> <input type="file" name="upload[]" size="30"><br> <label for="upload[]">File 2:</label> <input type="file" name="upload[]" size="30"><br> <label for="upload[]">File 3:</label> <input type="file" name="upload[]" size="30"><br> <!-- Add here more file fields if you need. --> </form> <form name=form method="post" action=""> <input type=text name="first" size="20"> First Name<BR> <input type=text name="last" size="20"> Last Name<BR> <input type=text name="email" size="20"> E-Mail<BR><BR> <input type=button value="Submit Request" onclick="verify();"> </form> How do I direct the path? Quote Link to comment https://forums.phpfreaks.com/topic/207362-uploadind-photos-with-javascript/ Share on other sites More sharing options...
KevinM1 Posted July 10, 2010 Share Posted July 10, 2010 Hey Dan, what are you trying to do, exactly? As a general bit of advice, remember the differences between PHP and JavaScript. PHP is a server side language. JavaScript is client side, meaning it runs in the browser AFTER the server side code has finished processing. The two sides can't talk to each other unless you use ajax, which I wouldn't recommend trying until you're proficient in both languages. As such, file uploads are done with PHP. I'd combine your forms, as I have a feeling you want both the files and user data to be uploaded at the same time. Also, be sure to write some server side form validation code. Your verify() function can be bypassed by someone simply turning off JavaScript in their browser. Quote Link to comment https://forums.phpfreaks.com/topic/207362-uploadind-photos-with-javascript/#findComment-1084174 Share on other sites More sharing options...
KevinM1 Posted July 10, 2010 Share Posted July 10, 2010 Also, show your file handling code. Quote Link to comment https://forums.phpfreaks.com/topic/207362-uploadind-photos-with-javascript/#findComment-1084175 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.