The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.
|
 |
|
Dev Shed Forums
> Programming Languages
> PHP Development
|
PHP-DB - It is possible to create a table fields for uploading a resume in single form?
Discuss It is possible to create a table fields for uploading a resume in single form? in the PHP Development forum on Dev Shed. It is possible to create a table fields for uploading a resume in single form? PHP Development forum discussing coding practices, tips on PHP, and other PHP-related topics. PHP is an open source scripting language that has taken the web development industry by storm.
|
|
 |
|
|
|
|

Dev Shed Forums Sponsor:
|
|
|

November 21st, 2012, 01:06 AM
|
|
Registered User
|
|
Join Date: Oct 2012
Posts: 16
Time spent in forums: 1 h 34 m 50 sec
Reputation Power: 0
|
|
|
PHP-DB - It is possible to create a table fields for uploading a resume in single form?
Hello,
Can anyone tell me how to create a table fields for uploading a resume in registration form?The registration form consisits of firstname,email,location and finally resume.
thanks,
simbu.
|

November 21st, 2012, 01:57 AM
|
 |
Still alive
|
|
Join Date: Mar 2007
Location: Washington, USA
|
|
|
You'll have to be a lot more descriptive than that. Also make sure that you're comfortable with PHP and HTML before starting this.
|

November 21st, 2012, 02:18 AM
|
|
Registered User
|
|
Join Date: Oct 2012
Posts: 16
Time spent in forums: 1 h 34 m 50 sec
Reputation Power: 0
|
|
Quote: | Originally Posted by requinix You'll have to be a lot more descriptive than that. Also make sure that you're comfortable with PHP and HTML before starting this. |
Not that much of expert.Let me know i will try.
|

November 21st, 2012, 09:01 AM
|
|
Contributing User
|
|
Join Date: Jun 2009
Posts: 295
  
Time spent in forums: 3 Days 8 h 37 m 29 sec
Reputation Power: 5
|
|
|
"table fields" - Are you referring to having fields that were submitted by the form get submitted to a MySQL table? Or something similar to where a user can upload a Word document, or similar, and have your script fetch required info from the uploaded document?
EDIT: Or are you asking simply how to create the form, and make the input fields for these items?
|

November 21st, 2012, 11:43 AM
|
 |
Contributing User
|
|
Join Date: Sep 2002
Location: Seattle, U.S.A.
Posts: 712
 
Time spent in forums: 4 Days 11 h 4 m 59 sec
Reputation Power: 11
|
|
|

November 21st, 2012, 11:55 AM
|
 |
Contributing User
|
|
Join Date: Sep 2002
Location: Seattle, U.S.A.
Posts: 712
 
Time spent in forums: 4 Days 11 h 4 m 59 sec
Reputation Power: 11
|
|
|

November 21st, 2012, 10:01 PM
|
|
Registered User
|
|
Join Date: Oct 2012
Posts: 16
Time spent in forums: 1 h 34 m 50 sec
Reputation Power: 0
|
|
Quote: | Originally Posted by Triple_Nothing "table fields" - Are you referring to having fields that were submitted by the form get submitted to a MySQL table? Or something similar to where a user can upload a Word document, or similar, and have your script fetch required info from the uploaded document?
EDIT: Or are you asking simply how to create the form, and make the input fields for these items? |
Hello,
Just i am asking how to upload a resume in database and what is the field(type ) we have to create for uploading the resume.
|

November 21st, 2012, 10:30 PM
|
 |
Contributing User
|
|
Join Date: Sep 2002
Location: Seattle, U.S.A.
Posts: 712
 
Time spent in forums: 4 Days 11 h 4 m 59 sec
Reputation Power: 11
|
|
Quote: | Originally Posted by simbu Hello,
Just i am asking how to upload a resume in database and what is the field(type ) we have to create for uploading the resume. |
Blob works. Check out the link I posted the first google search result has a tutorial with all the info.
|

November 21st, 2012, 10:31 PM
|
|
Registered User
|
|
Join Date: Oct 2012
Posts: 16
Time spent in forums: 1 h 34 m 50 sec
Reputation Power: 0
|
|
Quote: | Originally Posted by msteudel Blob works. Check out the link I posted the first google search result has a tutorial with all the info. |
Thanks for ur response.
But at the same time how can i view the resume from database.
|

November 21st, 2012, 10:35 PM
|
 |
Contributing User
|
|
Join Date: Sep 2002
Location: Seattle, U.S.A.
Posts: 712
 
Time spent in forums: 4 Days 11 h 4 m 59 sec
Reputation Power: 11
|
|
Quote: | Originally Posted by simbu Thanks for ur response.
But at the same time how can i view the resume from database. |
Directly from the database? You wouldn't be able to see it directly. It'll be a bunch of jibberish. You'd have to write some php to read it from the database and output it without appropriate headers to your browser. Again the first link has all this information in it ....
|

November 21st, 2012, 10:39 PM
|
|
Registered User
|
|
Join Date: Oct 2012
Posts: 16
Time spent in forums: 1 h 34 m 50 sec
Reputation Power: 0
|
|
Quote: | Originally Posted by msteudel Directly from the database? You wouldn't be able to see it directly. It'll be a bunch of jibberish. You'd have to write some php to read it from the database and output it without appropriate headers to your browser. Again the first link has all this information in it .... |
Thanks for the response.I will see ur link.
|

November 22nd, 2012, 09:46 AM
|
|
Registered User
|
|
Join Date: Nov 2012
Posts: 1
Time spent in forums: 8 m 14 sec
Reputation Power: 0
|
|
|
Get a free script and use the SQL schema
Don't reinvent the wheel; you can try get a free job classified like in hotscripts and adopt the schema for the resume.
Hope that helps
TK
Last edited by requinix : November 22nd, 2012 at 11:49 AM.
|

November 22nd, 2012, 11:52 AM
|
 |
Still alive
|
|
Join Date: Mar 2007
Location: Washington, USA
|
|
Quote: | Originally Posted by shopitstore Don't reinvent the wheel; you can try get a free job classified like in hotscripts and adopt the schema for the resume. |
But then you run the risk of copying a poorly-designed database. And anyways OP's question isn't about the database design.
|

November 22nd, 2012, 12:21 PM
|
 |
Contributing User
|
|
Join Date: Sep 2002
Location: Seattle, U.S.A.
Posts: 712
 
Time spent in forums: 4 Days 11 h 4 m 59 sec
Reputation Power: 11
|
|
Quote: | Originally Posted by requinix But then you run the risk of copying a poorly-designed database. And anyways OP's question isn't about the database design. |
I think that was a spammer ....
|

November 22nd, 2012, 04:45 PM
|
 |
Still alive
|
|
Join Date: Mar 2007
Location: Washington, USA
|
|
Quote: | Originally Posted by msteudel I think that was a spammer .... |
Quite possibly. That's why I removed the URL to his site. But he specifically mentioned resumes so I'm giving him the benefit of the doubt. Besides, the "find an existing script and look at how it works" is actually a reasonable suggestion, even if it was pointed at the wrong question.
|
Developer Shed Advertisers and Affiliates
| Thread Tools |
Search this Thread |
|
|
|
| Display Modes |
Rate This Thread |
Linear Mode
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|
|