What do you mean man?
Brothers , i have rest api get data only I want make integration with ionic and show data on template anyone can help me ?
Bro can you made in core php?
Start with codeigniter then go for laravel
Php developer concern only about backend where as fullstack have both backend as well as frontend
Please text me in personal chat Or say hi on whatsApp 9068378783

Cherpulassery palakkad Kerala
We are hiring php, Android,iOS developers
Interested candidate can send the details through the Google form http://bit.ly/2QeepJM
www.pinetech.in
PHP Laravel, Nodejs
Location:- Trichur & Cochin
PHP Laravel
Qualifications: 1.5+ Experiance
-Expert in PHP, Laravel, JQuery, and MySQL , Open Cart, etc
-Angular, Algorithms, Data Structures, Javascript,
-Experience in developing RESTful APIs and Microservices architecture Experience working with –AWS, GCP or other cloud environments
-Understanding the fully synchronous behavior of PHP.
-Understanding of MVC design patterns.
-Basic understanding of front-end technologies, such as JavaScript, HTML5, and CSS3
-Knowledge of object oriented PHP programming
-Creating database schemas that represent and support business processes
-Familiarity with SQL/NoSQL databases and their declarative query languages
-Proficient understanding of code versioning tools, such as Git
Interested candidates can send their resume to hr@pinetech.in
Nodejs
Qualifications: 1.5+ Experiance
-Good To Have Skills : Microservices and Light Weight Architecture
Key Responsibilities :
Strong proficiency with JavaScript
Strong proven experience with Node JS and Express
Strong proficiency in developing REST APIs
Event-driven and Microservices architectures; Understanding the nature of asynchronous programming
Technical Experience :
Experience building server less APIs using Node JS
Experience with implementing run-time architecture services caching, logging, etc
Experience with Test Driven Development is a plus
Experience with Domain Driven Design is a plus
Experience using Containers – Docker, Kubernetes
Interested candidates can send their resume to hr@pinetech.in
www.pinetech.in
PHP Laravel, Nodejs
Location:- Trichur & Cochin
PHP Laravel
Qualifications: 1.5+ Experiance
-Expert in PHP, Laravel, JQuery, and MySQL , Open Cart, etc
-Angular, Algorithms, Data Structures, Javascript,
-Experience in developing RESTful APIs and Microservices architecture Experience working with –AWS, GCP or other cloud environments
-Understanding the fully synchronous behavior of PHP.
-Understanding of MVC design patterns.
-Basic understanding of front-end technologies, such as JavaScript, HTML5, and CSS3
-Knowledge of object oriented PHP programming
-Creating database schemas that represent and support business processes
-Familiarity with SQL/NoSQL databases and their declarative query languages
-Proficient understanding of code versioning tools, such as Git
Interested candidates can send their resume to hr@pinetech.in
Nodejs
Qualifications: 1.5+ Experiance
-Good To Have Skills : Microservices and Light Weight Architecture
Key Responsibilities :
Strong proficiency with JavaScript
Strong proven experience with Node JS and Express
Strong proficiency in developing REST APIs
Event-driven and Microservices architectures; Understanding the nature of asynchronous programming
Technical Experience :
Experience building server less APIs using Node JS
Experience with implementing run-time architecture services caching, logging, etc
Experience with Test Driven Development is a plus
Experience with Domain Driven Design is a plus
Experience using Containers – Docker, Kubernetes
Interested candidates can send their resume to hr@pinetech.in
hah, expecting too much from 1.5 years of experience person, what’s the salary?
Atleast 4 years of work experience in developing Laravel based applications
Good knowledge and understanding of MVC and OOP concepts
Location: Coimbatore, India.
Salary: Based on your current Salary.
Immediate joining.
Contact: Message me
if (isset($_POST[‘signup-btn’])) {
$firstname = $_POST[‘firstname’] = ucfirst($_POST[‘firstname’]);
$lastname = $_POST[‘lastname’] = ucfirst($_POST[‘lastname’]);;
$username = $_POST[‘username’];
$email = $_POST[’email’];
$twitter = $_POST[‘twitter’];
$telegram = $_POST[‘telegram’];
$country = $_POST[‘country’];
$password = $_POST[‘password’];
$passwordConf = $_POST[‘passwordConf’];
// Validation method for sign-up
if (empty($firstname)) {
$errors[‘username’] = “Firstname required”;
}
if (empty($lastname)) {
$errors[‘username’] = “Lastname required”;
}
if (empty($username)) {
$errors[‘username’] = “Username required”;
}
if (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
$errors[’email’] = “Email address is invalid”;
}
if (empty($email)) {
$errors[’email’] = “Email required”;
}
if (empty($twitter)) {
$errors[‘twitter’] = “Twitter required”;
}
if (empty($telegram)) {
$errors[‘telegram’] = “Telegram required”;
}
if (empty($country)) {
$errors[‘country’] = “Country required”;
}
if (empty($password)) {
$errors[‘password’] = “Password required”;
}
if ($password !== $passwordConf) {
$errors[‘password’] = “The two password do not match”;
}
$emailQuery = “SELECT * FROM users WHERE email=? LIMIT 1”;
$stmt = $conn->prepare($emailQuery);
$stmt->bind_param(‘s’, $email);
$stmt->execute();
$result = $stmt->get_result();
$userCount = $result->num_rows;
$stmt->close();
if ($userCount > 0) {
$errors[’email’] = “Email already exists”;
}
if ($userCount > 0) {
$errors[‘username’] = “Username already exists”;
}
if ($userCount > 0) {
$errors[‘twitter’] = “Twitter handle already exists”;
}
if ($userCount > 0) {
$errors[‘telegram’] = “Telegram already exists”;
}
if (count($errors) === 0) {
$password = password_hash($password, PASSWORD_DEFAULT);
$token = bin2hex(random_bytes(50));
$verified = false;
$sql = “INSERT INTO users (firstname, lastname, username, email, twitter, telegram, country, verified, token, password) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)”;
$stmt = $conn->prepare($sql);
$stmt->bind_param(‘sssssssbss’, $firstname, $lastname, $username, $email, $twitter, $telegram, $country, $verified, $token, $password);
if ($stmt->execute()) {
// login user
$user_id = $conn->insert_id;
$_SESSION[‘id’] = $user_id;
$_SESSION[‘firstname’] = $firstname;
$_SESSION[‘lastname’] = $lastname;
$_SESSION[‘username’] = $username;
$_SESSION[’email’] = $email;
$_SESSION[‘verified’] = $verified;
sendVerificationEmail($email, $token);
// flash message
$_SESSION[‘message’] = “Registration successful!”;
$_SESSION[‘alert-class’] = “alert-success”;
header(‘location: index.php’);
exit();
} else {
$errors[‘db_error’] = “Database error: failed to register”;
}
}
}
if (isset($_POST[‘signup-btn’])) {
$firstname = $_POST[‘firstname’] = ucfirst($_POST[‘firstname’]);
$lastname = $_POST[‘lastname’] = ucfirst($_POST[‘lastname’]);;
$username = $_POST[‘username’];
$email = $_POST[’email’];
$twitter = $_POST[‘twitter’];
$telegram = $_POST[‘telegram’];
$country = $_POST[‘country’];
$password = $_POST[‘password’];
$passwordConf = $_POST[‘passwordConf’];
// Validation method for sign-up
if (empty($firstname)) {
$errors[‘username’] = “Firstname required”;
}
if (empty($lastname)) {
$errors[‘username’] = “Lastname required”;
}
if (empty($username)) {
$errors[‘username’] = “Username required”;
}
if (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
$errors[’email’] = “Email address is invalid”;
}
if (empty($email)) {
$errors[’email’] = “Email required”;
}
if (empty($twitter)) {
$errors[‘twitter’] = “Twitter required”;
}
if (empty($telegram)) {
$errors[‘telegram’] = “Telegram required”;
}
if (empty($country)) {
$errors[‘country’] = “Country required”;
}
if (empty($password)) {
$errors[‘password’] = “Password required”;
}
if ($password !== $passwordConf) {
$errors[‘password’] = “The two password do not match”;
}
$emailQuery = “SELECT * FROM users WHERE email=? LIMIT 1”;
$stmt = $conn->prepare($emailQuery);
$stmt->bind_param(‘s’, $email);
$stmt->execute();
$result = $stmt->get_result();
$userCount = $result->num_rows;
$stmt->close();
if ($userCount > 0) {
$errors[’email’] = “Email already exists”;
}
if ($userCount > 0) {
$errors[‘username’] = “Username already exists”;
}
if ($userCount > 0) {
$errors[‘twitter’] = “Twitter handle already exists”;
}
if ($userCount > 0) {
$errors[‘telegram’] = “Telegram already exists”;
}
if (count($errors) === 0) {
$password = password_hash($password, PASSWORD_DEFAULT);
$token = bin2hex(random_bytes(50));
$verified = false;
$sql = “INSERT INTO users (firstname, lastname, username, email, twitter, telegram, country, verified, token, password) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)”;
$stmt = $conn->prepare($sql);
$stmt->bind_param(‘sssssssbss’, $firstname, $lastname, $username, $email, $twitter, $telegram, $country, $verified, $token, $password);
if ($stmt->execute()) {
// login user
$user_id = $conn->insert_id;
$_SESSION[‘id’] = $user_id;
$_SESSION[‘firstname’] = $firstname;
$_SESSION[‘lastname’] = $lastname;
$_SESSION[‘username’] = $username;
$_SESSION[’email’] = $email;
$_SESSION[‘verified’] = $verified;
sendVerificationEmail($email, $token);
// flash message
$_SESSION[‘message’] = “Registration successful!”;
$_SESSION[‘alert-class’] = “alert-success”;
header(‘location: index.php’);
exit();
} else {
$errors[‘db_error’] = “Database error: failed to register”;
}
}
}
Check connection
Hmm I am able to login and fetch data into it but cant register sir..
#PHP_WordPress_DEVELOPER
Decosoft is #URGENT_HIRING for:
-: PHP WordPress DEVELOPER :-
#PHP_WordPress_DEVELOPER { 1year – 4years Exp.}
#Skills – PHP, WordPress, Shopify , Laravel,
ReactJS, Codeigniter, Wix, Yii.
* Ready to learn new technologies.
* Good Communication Skills.
#5_days_working
#Salary: Best In Industry
#Location :- D-160, 1st Floor, Phase 8 , Industrial Area,
Mohali, INDIA
Interested Candidates can share updated cv at:
hr.decosoftsolutions@gmail.com
or
* Contact on: 0172- 4639844
Regards, –
Hr Decosoft Solutions
www.decosoftsolutions.com
nice name
Currier Website – $950
Bitcoin Website – $1000
Pm me to see a demo of the site(s)
All prices are negotiate.
Codeigniter
Atleast 4 years of work experience in developing Laravel based applications
Good knowledge and understanding of MVC and OOP concepts
Location: Coimbatore, India.
Salary: Based on your current Salary.
Immediate joining.
Contact: Message me
Name of company
Cubereach Technologies
first ask then, cry!
Ok

Two radio buttons when I click on veg radio button then select size shows drop down list of veg cakes by weight column of backend data(sql)
This is my assignment pls help me guys
Bro can you made in core php?
Yes bro
Oky so where you’re confused in this task
DM sent to your telegram
, but its not seen
Candidate must have experience in Web Application Development.
Candidate must have experience in core PHP Programming Language.
Candidate must have experience in Windows Operating System.
Candidate must have experience in MySQL database.
Candidate must have good communication and interpersonal skills.
Candidate must have experience in programming languages like HTML, CSS, JQuery etc.
Send resume to jins@zhservices.com
Candidate must have experience in Web Application Development.
Candidate must have experience in core PHP Programming Language.
Candidate must have experience in Windows Operating System.
Candidate must have experience in MySQL database.
Candidate must have good communication and interpersonal skills.
Candidate must have experience in programming languages like HTML, CSS, JQuery etc.
Send resume to jins@zhservices.com
Location