Gossamer Forum
Quote Reply
Re: Resume Database In reply to
Not complex at all.

The resume uploader is the "LinkOwner". Simply put

<%if LinkOwner%>
<%include resume.html%>
<%endif%>

Where resume.html can be a form.txt type of file, that allows update/edit as well as display.

And to allow the employer to view the records, you'd modify search.cgi or page.cgi just slightly to check

if ($USER->{paid_status}) { do.....} else {return 'You must become a member to use this feature.');


To build the site statically, would require a bit of thought, but just have static build ignore the <%resume%> fields completely, easy if you put them in a separate table linked to the Link Record by Link_ID and User table by Username.

The trick is how to set the <%paid_status%> flag, since that requires a bi-directional transaction gateway. ccBill or iBill might work, but you need to pass in the payment data, then have the script pass back the authorized info to another script that sets the User table field <%paid_status%>, and an <%expire%> field, just for completeness.

I've been living/breathing this portion of Links for 6 months now! Some things I still don't get, but this sort of toggle/access is easy with the current user records. It gets harder if you want to assign "editors", but simple status flags that set what options are available to a user/surfer/visitor are easy. Especially if the types of data (fields) are known before hand, as with a resume, which has a few required fields, then a searchable TEXT field.

I actually do that on most of my sites. Admin and Editors automatically see a button that allows them to click/edit a link from the display screens, and Link owners get shown more detail information, etc.



PUGDOGŪ Enterprises, Inc.
FAQ:http://LinkSQL.com/FAQ
Forum:http://LinkSQL.com/forum
Subject Author Views Date
Thread Resume Database Karen 15743 Jun 19, 2001, 9:27 AM
Post Re: Resume Database
pugdog 15485 Jun 19, 2001, 2:19 PM
Thread Re: Resume Database
Stealth 15422 Jun 19, 2001, 6:00 PM
Thread Re: Resume Database
pugdog 15419 Jun 19, 2001, 7:23 PM
Thread Re: Resume Database
Stealth 15397 Jun 19, 2001, 7:35 PM
Thread Re: Resume Database
pugdog 15425 Jun 19, 2001, 8:13 PM
Thread Re: Resume Database
Stealth 15403 Jun 19, 2001, 8:23 PM
Thread Re: Resume Database
pugdog 15396 Jun 19, 2001, 8:44 PM
Thread Re: Resume Database
Stealth 15402 Jun 19, 2001, 8:49 PM
Thread Re: Resume Database
pugdog 15405 Jun 19, 2001, 9:19 PM
Thread Re: Resume Database
Karen 15401 Jun 20, 2001, 1:13 AM
Thread Re: Resume Database
Stealth 15443 Jun 20, 2001, 6:09 AM
Thread Re: Resume Database
Karen 15368 Jun 20, 2001, 9:55 AM
Thread Re: Resume Database
Stealth 15357 Jun 20, 2001, 10:26 AM
Thread Re: Resume Database
Karen 15375 Jun 20, 2001, 12:07 PM
Post Re: Resume Database
Stealth 15321 Jun 20, 2001, 1:19 PM
Post Re: Resume Database
pugdog 15384 Jun 20, 2001, 11:21 PM
Thread Re: Resume Database
Stealth 15383 Jun 20, 2001, 6:05 AM
Thread Re: Resume Database
pugdog 15332 Jun 20, 2001, 11:42 PM
Thread Re: Resume Database
Stealth 15347 Jun 21, 2001, 7:50 AM
Thread Re: Resume Database
pugdog 15347 Jun 21, 2001, 11:27 AM
Post Re: [pugdog] Resume Database
nakulgoyal 14106 Jun 9, 2004, 2:04 AM