Question: Create a Web site for tracking, documenting, and managing the process of interviewing candidates for professional positions. On the main page, include a form with
Create a Web site for tracking, documenting, and managing the process of interviewing candidates for professional positions. On the main page, include a form with fields for the interviewers name, position, and date of interview. Also include fields for entering the candidates name, communication abilities, computer skills, business knowledge, and interviewers comments. Clicking the Submit button should save the data in a MySQL database. Include a link for opening a document that displays each candidates interview information. Save the document as interviews.php. Open the interviews.php page a Web browser to test. Can anyone answer this, as the answers given aren't accurate.
Here is what I currently have:
interview.php
candidate.php
$dbc=mysql_connect("localhost","root","AidanCT11") or die("mysql_error()"); mysql_select_db("regisdb")or die("mysql_error()"); mysqli_query($connect,"INSERT INTO candidate(iname,pos,dofin,cdname,cabilities,papp,compskill,bkno,icomm) VALUES
('$interviewer_name','$position','$date_of_interview','$candidates_name','$communicationab','$professionalap','$compskills','$businessknd','$inter_co
mment')");
if(mysqli_affected_rows($connect) > 0){ echo "
One record Added
"; echo "Go Back"; } else { echo "No records added"; echo mysqli_error ($connect); } ?>
demo.php
The main page comes up fine, but after the main page it comes up: arse error: syntax error, unexpected 'interview' (T_STRING), expecting ',' or ';' in C:\Course Technology\1687-5\Chapter.09\Project\candidate.php on line 23.
If there is anyone that can assist it would be greatly appreciated.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
