> I can easily write a C program that takes the NAA membership ID or the
> e-mail address and extracts the rest of the information from the database.
> What I don't know how to do is make the information, which was extracted
> from the database, magically show up on the form so that all the
> auctioneer has to do is fill in the stuff that's not in the database (e.g.
> information on specific auctions).
> 
> If there is a way to do it that can be done in C and doesn't involve perl
> or java, that would be a big help, because I'm not familiar with the
> latter two languages just yet and I'd like to find a way to implement this
> fairly quickly.

   It isn't hard... just imitate the print statements in a PERL CGI-BIN
program. The most important is the one that says:


       print "Content-type: text/html\n\n";
 
   That is PERL... If that is the first thing output, everything else
printed will go to the browser.  Not sure how to grab the form data, but
if you use POST, it might be found in stdin; though you will have to do
some translation to get your blanks and such back.

[EMAIL PROTECTED]  ------------------  [EMAIL PROTECTED]      
----------------------- IMAGINEERING --------------------------
--- Have you analyzed your viewer's footprints in the logs? ---
--- Webmaster's Resources: http://www.mall-net.com/webcons/ ---
--- Web Imagineering -- Architecture to Programming CGI-BIN ---
---------------------------------------------------------------


____________________________________________________________________
--------------------------------------------------------------------
 Join The Web Consultants Association :  Register on our web site Now
Web Consultants Web Site : http://just4u.com/webconsultants
If you lose the instructions All subscription/unsubscribing can be done
directly from our website for all our lists.
---------------------------------------------------------------------

Reply via email to