Quote:
Originally Posted by Muddasir
Hello everyone.
could anyone plz help me.
I am working on a job portal. Now i am facing problem in CV builder. I am confuse how to implement this through php, where this(CV) will be saved and how this file is being mailed to the employer...am so confused,,,,,,,,,,,,uptill now i have just made the registration page.
please tell me how i'll implement this.............
Hi,
what you can do is approach this problem in two ways:
1. Upload a PDF or DOC or what ever format
2. Make the user fill in all the information about his education, skills, and so on on a web page
If you choose method 1 you will have to look at where to store the uploaded information, in a database or on the filesystem, this is a solid solution but it'll have you thinking and working a lot and the person that registered his/her CV will have to upload a new one once in a while.
If you choose method 2 you can store all the information in a database and when the user wants to update it simply let him/her edit the information stored "live" so to say. Now after this you can either directly e-mail the change or the newly registered user to addresses that you store somewhere.
Just google for e-mailing with PHP it's pretty straight forward as I recall it.
Hope this helped