Skip to main content

Walkin for Php Developers On 24th Nov

Company        Surprise Solutions

Website          www.surprisesolutions.com

Eligibility        Any Graduate

Experience     1-2 Years


Location         Chennai

Surprise Solutions
Job Role: Sr.Php Developer

Job Summary :

Candidate Profile:

*Proficient in Core PHP, JavaScript, Ajax,Jquery,HTML and MySQL.

* Hands-on any PHP based framework/CMS like CakePHP or Magento.

* Good to have Object Oriented Programming Skills.

* Must write efficient code with documentation.

* Can read code written by others.

* Has experience debugging code.

* Must be a team player, posses a good attitude and be self-disciplined.

*At least 3 live projects experience a must.

Technical skills:

* Strong knowledge of Core PHP/AJAX with OOPs a must.

* Strong knowledge of HTML, CSS a must.

* Strong knowledge of database design and query writing a must (MySQL).

* Experience in latest PHP technologies a must (ex: Zend).

* Experience in Frameworks desirable.

* Knowledge of infrastructure configuration a must (linux, PHP, Apache, MySql).

* Knowledge of Payment Gateway integration / Web services a plus.

* Good knowledge or experience in developing ecommerce websites a must. With Os commerce / Magento a plus.

Walk in Date On 24th Nov @ Timing: 11am – 2pm

Venue:
Surprise Solutions,
97/98 Nehru Salai,
Ashok Nagar,
Chennai-600083.
Land Mark:
Next to Kasi Theatre
Hotel Saravana Bhavan Complex

Contact Us:

Forward Your Resume: hr@surprisesolutions.com

Contact Number: 9962514775

Comments

Popular Posts

How to find out Max Salary from each department

You can find maximum salary for each department by grouping all records by DeptId and then using MAX() function to calculate maximum salary in each group or each department. SQL Query: SELECT DeptID, MAX(Salary) FROM Employee  GROUP BY DeptID. This questions become more interesting if Interviewer will ask you to print department name instead of department id, in that case you need to join Employee table with Department using foreign key DeptID, make sure you do LEFT or RIGHT OUTER JOIN to include departments without any employee as well.  Here is the query