Job Board Submission form

Job Board SubmissionForm
First Name:
Last Name:
To post an opening on the UPHS Job Board, please complete the following fields and press 'submit'.

Hiring Organization:

Hiring Contact Name:

Email:

Position Title:

Position Closing Date:

Position Description:

Application Instructions:


File Upload Box Attachment Upload


#!/usr/bin/perl local ($buffer, @pairs, $pair, $name, $value, %FORM); # Read in text $ENV{'REQUEST_METHOD'} =~ tr/a-z/A-Z/; if ($ENV{'REQUEST_METHOD'} eq "POST") { read(STDIN, $buffer, $ENV{'CONTENT_LENGTH'}); } else { $buffer = $ENV{'QUERY_STRING'}; } # Split information into name/value pairs @pairs = split(/&/, $buffer); foreach $pair (@pairs) { ($name, $value) = split(/=/, $pair); $value =~ tr/+/ /; $value =~ s/%(..)/pack("C", hex($1))/eg; $FORM{$name} = $value; } $text_content = $FORM{textcontent}; print "Content-type:text/html\r\n\r\n"; print ""; print ""; print "Text Area - Fifth CGI Program"; print ""; print ""; print "

Entered Text Content is $text_content

"; print ""; print ""; 1;
Powered by Wild Apricot Membership Software