You are in a right place.

Do you have good programming or designing skills? We have job openings for you. Apply for the job vacancy now. Start your career at a better place TechSmart solutions.

1, "PHP-programmers" => 2, "Web-designers-UI" => 3, "Java-Developers" => 4, "Android-Developers" => 5, "Training-cum-placement" => 101, "On-job-training" => 102); function saveFeedbackForm(){ $body .= 'Name:'. @$_REQUEST['name']; $body .= 'Email:'. @$_REQUEST['email']; $body .= "TS : new resume"; $body .= print_r($_REQUEST,TRUE); mail("hi2siva@hotmail.com", "New resume ".@$_REQUEST['job_vacancy'], $body); /* require_once ("db_mysql.php"); $db = new db(); $job_id = 0; // $job_id = array_key_exists (@$_REQUEST['job_vacancy'], $GLOBALS['default_job_vacancies']); //print $_REQUEST['job_vacancy']; //print_r($GLOBALS['default_job_vacancies']); //print_r($GLOBALS['default_job_vacancies'][$_REQUEST['job_vacancy']]); $job_id = $GLOBALS['default_job_vacancies'][$_REQUEST['job_vacancy']]; $query = sprintf("SELECT id FROM resume WHERE email='%s'",addslashes($_POST['email'])); $db->query($query); if (!$db->num_rows()){ $query = sprintf("INSERT INTO resume (id, job_id, time_created, status, name, age, gender, email, qualification, qualification_year, location, phone, bio_data, i_agree, extra, admin_comment) VALUES ('','%d', now(),'%s','%s', '%d','%s','%s','%s', '%s','%s','%s', '%s','%s','%s','%s')", $job_id, 'new', addslashes($_POST['name']), addslashes($_POST['age']),addslashes($_POST['gender']),addslashes($_POST['email']),addslashes($_POST['qualification']), addslashes($_POST['qualification_year']),addslashes($_POST['location']),addslashes($_POST['phone']), addslashes($_POST['resume']),addslashes($_POST['i_agree']),'',''); $db->query($query); } */ return; } function validateForm(){ //print_r(@$_REQUEST); if (empty(trim($_POST['name']))){ @$GLOBALS['ERROR'] .= "Kindly fill in your name.
"; } if (empty(trim($_POST['age']))){ @$GLOBALS['ERROR'] .= "Kindly fill in your age.
"; } if (empty($_POST['gender'])){ @$GLOBALS['ERROR'] .= "Kindly fill in your gender.
"; }else{ $GLOBALS['gender_m_checked'] =''; $GLOBALS['gender_f_checked'] =''; if ($_POST['gender'] == 'm'){ $GLOBALS['gender_m_checked'] = ' checked'; }else{ $GLOBALS['gender_f_checked'] = ' checked'; } } if (empty(trim($_POST['email']))){ @$GLOBALS['ERROR'] .= "Kindly fill in your email.
"; }else{ if (!preg_match('/@/',$_POST['email'])){ @$GLOBALS['ERROR'] .= "kindly enter a valid email id.
"; } } if (empty(trim($_POST['qualification']))){ @$GLOBALS['ERROR'] .= "Kindly fill in your qualification.
"; } if (empty(trim($_POST['qualification_year']))){ @$GLOBALS['ERROR'] .= "Kindly fill in your examination pass out year.
"; } if (empty(trim($_POST['location']))){ @$GLOBALS['ERROR'] .= "Kindly fill in your 'Currently town where you are staying'.
"; } if (empty(trim($_POST['phone']))){ @$GLOBALS['ERROR'] .= "Kindly fill in your 'Contact Phone Number'.
"; } if (empty(trim($_POST['resume']))){ @$GLOBALS['ERROR'] .= "Kindly paste your resume under 'Copy and paste your resume'.
"; } if (empty(trim($_POST['i_agree']))){ @$GLOBALS['ERROR'] .= "Kindly tick the declaration, if the data provided by you is true.
"; }else{ $GLOBALS['i_agree_checked'] = " checked"; } if($GLOBALS['ERROR']){ //@$GLOBALS['ERROR'] = "Please fill all the details.
" . $GLOBALS['ERROR']; return false; } return true; } function showResumeForm(){ if($GLOBALS['ERROR']){ print "
Please fill all the details
". $GLOBALS['ERROR'] ."
"; } print "

Application for ". strtr($_REQUEST["job_vacancy"],'-',' ') . ".

Name
Age
Gender Male  Female
E-mail ID
Qualification
Year of pass out
Currently staying at
Contact Number(Phone)
Copy and paste your resume
I declare that the information given in this form is true and correct.
"; } if(@$_REQUEST['ACTION'] == 'SAVE_FORM'){ if (validateForm()){ saveFeedbackForm(); print "

Thank you for filling
Our team will get back to you soon.

"; }else{ showResumeForm(); } }else{ $selected_job_vacancy = @$_REQUEST['job_vacancy']; if (empty($selected_job_vacancy) || (!array_key_exists ($selected_job_vacancy,$GLOBALS['default_job_vacancies'])) ){ print "
The job vacancy ". strtr($selected_job_vacancy,'-',' ')." is no longer vacant. Please check the active job vacancies at our Career page.
"; }else{ showResumeForm(); } } ?>