I am wondering how to create a page that has a result page like this http://www.securityguardtraininghq.com/security-guard-jobs/ When you hit the menu tab at top "security guard job" it will give you a result as shown in the url above Can anyone tell me how to do this? Thank you, Kelvin
The page is automatically performing a search for "security jobs" against the database and returning the results without the user having to specify the search parameters. You can create a page that returns results for a specific query by creating a SQL query that might look something like: SELECT * FROM tblJobs WHERE JobID = 1 (where "1" is the ID for "Security Jobs" in the table). The query is just built into the page code. Is that what you were looking for?
No, the results are actually pulled from a third party service http://www.indeed.com/ and embedded in the page using iframes. Check their website, they probably have some manuals on that.
thanks to the two people that replied as they have taught me something new today (even though it wasn't my question)
Hey, its a search functionality implemented on the site. When you enter the page the first time the search for the keywords "Security Guard" is provided. Try changing the keywords and hit the find jobs button, it will give you a different result.
I checked on "indeed" site but I couldn't find a function like this for you to implement into your page, is there any tutorial on how to implement this into my page ?