aamberker Posted February 1, 2008 Report Share Posted February 1, 2008 Hi Folks OKAY - We would like to receive JobSeeker's document files via our HTML page.~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~<body><form method="POST" enctype="multipart/form-data" action="XXX"><p><input type="file" name="F1" size="20"><input type="submit" value="Submit" name="B1"><input type="reset" value="Reset" name="B2"></p></form></body>~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Wondering how to accomplish this task now. Perhaps the following details might be useful. - Server is running on IIS 6.0. - Server is on HP P-4 and 1 GB RAM. - The site is running on Windows 2003 server.Note: Instead of sending "Reference URLs", please let me know the steps and techniques to accomplish the above task Link to comment Share on other sites More sharing options...
Synook Posted February 2, 2008 Report Share Posted February 2, 2008 This reference URL contains good instructions - I couldn't explain it better http://www.w3schools.com/php/php_file_upload.asp (do you have PHP?) Link to comment Share on other sites More sharing options...
aamberker Posted February 4, 2008 Author Report Share Posted February 4, 2008 This reference URL contains good instructions - I couldn't explain it better http://www.w3schools.com/php/php_file_upload.asp (do you have PHP?)Hi Synook,Thanks for your response.I couldn't explain it better YOU CAN!!!... Just go-ahead and try Will try my best to understand your explanation (do you have PHP?)I guess yes or perhaps not... Link to comment Share on other sites More sharing options...
justsomeguy Posted February 4, 2008 Report Share Posted February 4, 2008 First you need to figure out if your server supports PHP. If it supports PHP then you can use that, it is easier then ASP. If your server only supports ASP then you will need to install a file upload component for ASP. If you're planning on doing anything else dynamic with the site it would probably be better to install PHP and use that instead of ASP.Step 1 is figure out if the server has PHP installed. You can create a PHP file with this in it and run it on the server to find out:<?php phpinfo(); ?> Link to comment Share on other sites More sharing options...
aamberker Posted February 5, 2008 Author Report Share Posted February 5, 2008 First you need to figure out if your server supports PHP. If it supports PHP then you can use that, it is easier then ASP. If your server only supports ASP then you will need to install a file upload component for ASP. If you're planning on doing anything else dynamic with the site it would probably be better to install PHP and use that instead of ASP.Step 1 is figure out if the server has PHP installed. You can create a PHP file with this in it and run it on the server to find out:<?php phpinfo(); ?>Hi justsomeguy,Thanks a lot for your response.Well, what I understand is that I need to place the following code -<?php phpinfo(); ?>in "test.php" file and then after uploading, I need to pull www.DOMAINNAME.com/test.php to check whether our Company's server supports PHP or nope.Am I making sense??? Please confirm.Thanks. Link to comment Share on other sites More sharing options...
Synook Posted February 5, 2008 Report Share Posted February 5, 2008 Yes, that is right. Link to comment Share on other sites More sharing options...
aamberker Posted February 5, 2008 Author Report Share Posted February 5, 2008 Yes, that is right.Hi Synook,Okay ~ Thanks for confirming about that ... Just now I sent you a message. Please pull and read it when you get a chance.Thanks. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now