Skip to main content

Openings for PHP Core, Code Igniter, MVC, MySQL, Eclipse, REST API's, Cloud Apps, API Integration

Job Description
We are growing our team & seeking Cloud Developer with strong skills in PHP Core,Code Igniter ,MVC,MySQL, Eclipse,REST API's, Cloud Apps, API Integration.also experience in Joomla, Wordpress, Drupal, Magento, Prestashop
Salary:

INR 1,00,000 - 1,25,000 P.A
Industry:

IT-Software / Software Services
Functional Area:


IT Software - Application Programming, Maintenance
Role Category:

Programming & Design
Role:

Software Developer
Keyskills:

php, Software developer, Joomla, Wordpress, Drupal, Magento, Prestashop, mysql, programmer, php developer, joomla, drupal, software programmer
Desired Candidate Profile
Education:

(UG - Any Graduate - Any Specialization) AND (PG - Any Postgraduate - Any Specialization) AND ( Doctorate - Any Doctorate - Any Specialization)
Must have strong skills in PHP Core, MySQL, REST API's & MVC with exp of having used them in delivery of at least one project. App development exp using Object Oriented Development methodologies, Exp in Restful Web-services & XML, exp in Code Igniter
Company Profile
ARIES TECHSOFT PRIVATE LIMITED
http://www.ariestechsoft.net/
A Leading iso 9001:2008 certified Software company in noida
Contact Details
Recruiter Name:

Ruchi
Email Address:hr@ariestechsoft.net

Telephone:

0120-4169888
Reference Id:

php01

Comments

  1. Trust Connect Infosoft Technologies for all your Laravel development requirements and experience the power of cutting-edge technology combined with unmatched customer satisfaction. Contact us today and let us transform your vision into reality.
    Laravel Development Team in India

    ReplyDelete

Post a Comment

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