← prev | next →
meetlunkad 2019-08-11 12:03:17
do any one have e commerce website script ?
meetlunkad 2019-08-11 12:03:20
php
meetlunkad 2019-08-11 12:04:01
yes
meetlunkad 2019-08-11 12:04:42
ok
hotboy_178 2019-08-11 15:19:56
im using atom beatify but im trying to beautify my php code mixeed with html , its not wokring. is there any way to do this to beautify it?
nareknadaryan 2019-08-11 15:22:08
hotboy_178 2019-08-11 15:19:56
im using atom beatify but im trying to beautify my php code mixeed with html , its not wokring. is there any way to do this to beautify it?
use phpstorm
hotboy_178 2019-08-11 15:22:38
okay but do i need to install any package in phpStorm?
hotboy_178 2019-08-11 15:22:55
but can VSCODE do this task
nareknadaryan 2019-08-11 15:23:37
i think you dont need to install any package in phpstorm for that
nareknadaryan 2019-08-11 15:24:25
yes maybe you can do it in vscode ,but i think the best is the phpstorm for php
hotboy_178 2019-08-11 15:36:11
nareknadaryan 2019-08-11 15:24:25
yes maybe you can do it in vscode ,but i think the best is the phpstorm for php
okay thanks homie
nareknadaryan 2019-08-11 15:36:44
hotboy_178 2019-08-11 15:36:11
okay thanks homie
please
bluebit1 2019-08-11 16:31:08
How to fix guys
2019-08-12 07:47:59
kristina_k27 2019-08-10 17:46:36
Hello, I need Belarusian guys if they are here)
I ama indian
2019-08-12 07:48:52
Rohit Dubey 2019-08-10 21:33:16
Looking for full stack developer …. Please mail your resume rohitdubey@nimapinfotech.co.
Fresher can apply?
i_am_r00t 2019-08-12 08:21:29
Rohit Dubey 2019-08-10 21:33:16
Looking for full stack developer …. Please mail your resume rohitdubey@nimapinfotech.co.
Place??
2019-08-12 15:24:36
Hey, if you are looking for IT opportunity as a freelancer, full time job or intern and want to talk with the recruiter directly. You can check here. Chatting with all the recruiters is free of cost this year. Try it out. https://play.google.com/store/apps/details?id=fun.ontimejob
Rohit Dubey 2019-08-12 15:52:40
2019-08-12 07:48:52
Fresher can apply?
Yes
feature 2019-08-12 17:43:06
i need a auto sitemap generator script for my dynamic website which has around 100k+ pages.
TheProfitKing 2019-08-12 21:44:50
3vacancies available
Full stack developer needed
2+ years of experience
Contact @ProfitKing
2019-08-12 23:15:20
When um using post method in php undefined variable error occur
2019-08-12 23:15:24
Any solution
rohit267 2019-08-13 00:15:09
2019-08-12 23:15:24
Any solution
use $_POST not $_POST[]
2019-08-13 00:17:30
Can you please tell me what’s the erroe
2019-08-13 00:17:34
Error
2019-08-13 00:20:39
rohit267 2019-08-13 00:15:09
use $_POST not $_POST[]
Bro if you know please check it
rohit267 2019-08-13 00:22:28
2019-08-13 00:20:39
Bro if you know please check it
use var_dump($product) to check the items in it
rohit267 2019-08-13 00:22:36
show line 17
rohit267 2019-08-13 00:22:45
can’t see it properly
rohit267 2019-08-13 00:24:45
use <?php echo $product[‘title’]; ?>
rohit267 2019-08-13 00:25:06
2019-08-13 00:26:00
OK bro
rohit267 2019-08-13 00:28:28
2019-08-13 00:26:00
OK bro
working?
LetsGiveAnotherChance 2019-08-13 05:50:52
rohit267 2019-08-13 00:24:45
use <?php echo $product[‘title’]; ?>
I think It’s doesn’t matter here
LetsGiveAnotherChance 2019-08-13 05:51:25
From where you are getting $product value …?
LetsGiveAnotherChance 2019-08-13 05:51:56
First check this as it’s not coming on that page
meetlunkad 2019-08-13 07:08:27
php chatbot?
rohit267 2019-08-13 08:07:16
LetsGiveAnotherChance 2019-08-13 05:50:52
I think It’s doesn’t matter here
he was not using echo
meetlunkad 2019-08-13 08:53:43
sorry
rohit267 2019-08-13 08:56:09
@i_am_ro0t make rose admin
BoAlix 2019-08-13 10:22:39
i want cheak if
devices in mysql 0
i want add device id
if have devices
cheak == seem Devies or no
//Get the input request parameters
$inputJSON = file_get_contents(‘php://input’);
$input = json_decode($inputJSON, TRUE); //convert JSON into array
//Check for Mandatory parameters
if(isset($input[‘username’]) && isset($input[‘device’])){
$username = $input[‘username’];
$mycode = $input[‘device’];
$query = “SELECT username,timecode FROM member WHERE username = ?”;
if($stmt = $con->prepare($query)){
$stmt->bind_param(“s”,$username);
$stmt->execute();
$stmt->bind_result($gg,$tt);
if($stmt->fetch()){
if ($mycode == 0){
add id device}else
if($username == $gg && $mycode == $tt){
$response[“status”] = 0;
$response[“message”] = “Login successful”;
$response[“username”] = $gg;
}
else{
$response[“status”] = 1;
$response[“message”] = “Invalid username and password combination”;
}
}
else{
$response[“status”] = 1;
$response[“message”] = “Invalid username and password combination”;
}
$stmt->close();
}
}
else{
$response[“status”] = 2;
$response[“message”] = “Missing mandatory parameters”;
}
//Display the JSON response
echo json_encode($response);
?>
rohit267 2019-08-13 10:28:51
BoAlix 2019-08-13 10:22:39
i want cheak if
devices in mysql 0
i want add device id
if have devices
cheak == seem Devies or no
//Get the input request parameters
$inputJSON = file_get_contents(‘php://input’);
$input = json_decode($inputJSON, TRUE); //convert JSON into array
//Check for Mandatory parameters
if(isset($input[‘username’]) && isset($input[‘device’])){
$username = $input[‘username’];
$mycode = $input[‘device’];
$query = “SELECT username,timecode FROM member WHERE username = ?”;
if($stmt = $con->prepare($query)){
$stmt->bind_param(“s”,$username);
$stmt->execute();
$stmt->bind_result($gg,$tt);
if($stmt->fetch()){
if ($mycode == 0){
add id device}else
if($username == $gg && $mycode == $tt){
$response[“status”] = 0;
$response[“message”] = “Login successful”;
$response[“username”] = $gg;
}
else{
$response[“status”] = 1;
$response[“message”] = “Invalid username and password combination”;
}
}
else{
$response[“status”] = 1;
$response[“message”] = “Invalid username and password combination”;
}
$stmt->close();
}
}
else{
$response[“status”] = 2;
$response[“message”] = “Missing mandatory parameters”;
}
//Display the JSON response
echo json_encode($response);
?>
explain properly
2019-08-13 11:58:40
I need ocr free api to get business card data
prembiharisaran 2019-08-13 15:40:03
2019-08-10 20:53:54
Location?
Hyderabad, India
LetsGiveAnotherChance 2019-08-13 20:11:43
rohit267 2019-08-13 08:07:16
he was not using echo
Yes he was using <?= $data ?> which is also user to print data in php new versions..
rohit267 2019-08-13 20:13:44
LetsGiveAnotherChance 2019-08-13 20:11:43
Yes he was using <?= $data ?> which is also user to print data in php new versions..
wow
rohit267 2019-08-13 20:14:04
i tried solving that but failed
← prev | next →