Whenever i enter my details and submit the query give me an error
INSERT INTO `temp_user_detail` (`email`, `username`, `profession`,
`experience`, `current_work`, `state`, `job_type`, `about`, `college`,
`diploma`, `department`, `looking`) VALUES
('mailmeabhishek95@gmail.com', 'abhinift2014', 'nj', 'Less than 2
years', 'Home', 'Kerala', 'Fixed Term', 'hii', 'Arch Academy Of Design',
'Bachelor's Of Fashion Technology', 'Lifestyle Design', 'Work')You have
an error in your SQL syntax; check the manual that corresponds to your
MySQL server version for the right syntax to use near 's Of Fashion
Technology', 'Lifestyle Design', 'Work')' at line 1
here is the php part
$hi= "INSERT INTO `temp_user_detail` (`email`, `username`,
`profession`, `experience`, `current_work`, `state`, `job_type`,
`about`, `college`, `diploma`, `department`, `looking`) VALUES
('$email', '$userid1', '$profession', '$experience', '$current',
'$state', '$jobtype', '$about', '$college', '$diploma', '$depart',
'$looking')";
$run=mysql_query($hi)
or die(mysql_error());