Welcome to Tech Support Forum home to more then 136,000 problems solved. Issues have included: Spyware, Malware, Virus Issues, Windows, Microsoft, Linux, Networking, Security, Hardware, and Gaming Getting your problem solved is as easy as:
1. Registering for a free account
2. Asking your question
3. Receiving an answer

Registered members:
* Get free support
* Communicate privately with other members (PM).
* Removal of this message
* See fewer ads.
* And much more..

 



Want to know how to post a question? click here Having problems with spyware and pop-ups? First Steps
Go Back   Tech Support Forum > The IT Pro > Programming
User Name
Password
Site Map Register Donate Rules Blogs Mark Forums Read


Programming A discussion forum for programs and programming used in tech-related businesses.

Reply
 
LinkBack Thread Tools
Old 10-02-2008, 08:23 AM   #1 (permalink)
Registered User
 
Join Date: Oct 2008
Posts: 1
OS: WINDOWs XP Pro


API Auto Job Posting Distribution to Job Boards from my site.

I’m trying to find some documentation and instructions on how I can input jobs from my website and have them posted directly on the appropriate category on job boards. I have developed a software for our recruiters to post a job on our site and we would like those same jobs to be distributed to monster, dice, craiglist. We have accounts and pay for the membership for all the major job boards because I realize there will be some account setup and we need to have the ability to post. How is it that I can submit jobs through my form and have it sent to job sites? Thanks, Stephen 866-BEREAN-1 x327 or 954-416-4407
sjls is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Important Information
Join the #1 Tech Support Forum Today - It's Totally Free!

TechSupportForum.com is a leading support website for your computer needs. We offer free, friendly and personalized computer support. Why pay to have your computer fixed when you can do it for free.

Join TechSupportforum.com Today - Click Here

Old 10-02-2008, 03:57 PM   #2 (permalink)
Design Team Member
 
jamiemac2005's Avatar
 
Join Date: Jul 2007
Location: Coventry, UK
Posts: 1,888
OS: Vista, various linux distros


Re: API Auto Job Posting Distribution to Job Boards from my site.

hey, i hope you're knowledgable in some form of server-side scripting/possibly javascript... basically check the forms that you would be posting them to:

- if it uses the method "GET"(e.g. <form method="GET"> then life is nice and easy(because you can just modify the url) e.g. http://www.myexample.com/postjob.php...&jobtitle=blah (of course you'd just edit the two "blah"s and just link to that url...

- if the form uses the "POST" method (e.g. <form method="POST">) then re-build the form with hidden items, self populate it and post it... e.g. if the form is something like:
Code:
<!--(example form)-->
<form method="POST" action="postjob.php">
<input type="text" name="jobtitle" />
<input type="text" name="jobdescription" />
</form>
do something like:
Code:
<form method="POST" action="http://www.fullsiteurl.com/postjob.php">
<input type="hidden" name="jobtitle" value="the job they posted" />
<input type="text" name="jobdescription" value="the description" />
</form>
(I think this would work but it's untested, i'm sure it could be changed to work if it doesn't)


then have it submit itself...


or you could do this entirely in javascript(i think):
Code:
<script language="text/javascript">
//a function to post a ficticious form
function postForm(jobTitle, jobDescription){
//create a form object
var theForm = document.createElement("form");
theForm.action = "http://www.fullsiteurl.com/postjob.php";
theForm.method = "POST";//or "GET";
//add the hidden items(the quick and unclean way[using innerHTML])
theForm.innerHTML = "<input type='hidden' name='jobTitle' value='" + jobTitle + "' /><input type='hidden' name='jobDescription' value='" + jobDescription + "' />";

//subit the form
theForm.submit();
}
</script>
Of course you'll have to look at the forms, choose the best course of action, modify code, etc. yourself and if you need help with translating them into a self-fillable/submittable form just post back with the form's contents.

Cheers,
Jamey
__________________

Myspace
jamiemac2005 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Reply


Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off




All times are GMT -7. The time now is 01:26 PM.



Copyright 2001 - 2009, Tech Support Forum
Home Tips Plus | Outdoor Basecamp | Automotive Support Forum

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85