Click to See Complete Forum and Search --> : Link to text file/create resume database


BEFOR
08-02-2003, 04:41 PM
Still new to php/MYSQL, I am trying to find the best way to link to text file documents.

I've seen results with PDF, but don't know if enough users have Adobe. Maybe a Word document, or just simple text that will be able to hold margins, column widths etc.

But this will be a basic format of uploaded resumes. (ASCII?)
I need to:

1) upload preformatted resumes into text file database on submit

2) link to this database off other tables.

So how does a php neophyte link to a table that would be able to call several-page text file resumes?

--Buzzly? Elizabeth?? Hello!?

mzanimephp
08-05-2003, 01:25 PM
You should probably post this in the Newbies (http://www.phpbuilder.com/board/forumdisplay.php?s=&forumid=3) or Coding (http://www.phpbuilder.com/board/forumdisplay.php?s=&forumid=10) forums. BuzzLY and Elizabeth are all too often seen in those places.

That is... unless your using Dreamweaver to edit your stuff.

BEFOR
08-05-2003, 01:41 PM
Thank you mzanimephp,

Actually I do use Dreaweaver for edit,

Anyone use " PURE PHP UPLOAD"??

design2odd
08-15-2003, 05:46 PM
You will want to create a template for viewing resumes.

viewresume.php

In this file you will want to $_GET the resume ID from your database. And use that ID in each query to generate content for your template.

Your result query will look something like this

$_GET['resumeID'];
$result = "SELECT * FROM resumeTable WHERE resumeID = '$resumeID';