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!?

    You should probably post this in the Newbies or Coding forums. BuzzLY and Elizabeth are all too often seen in those places.

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

      Thank you mzanimephp,

      Actually I do use Dreaweaver for edit,

      Anyone use " PURE PHP UPLOAD"??

        10 days later

        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';

          Write a Reply...