Razorpay is giving me this error anyone knows how to solve this?
Hi anyone use here map api?
Is this what you want?
Does someone here knows the common issue?
Can you send screenshot of the php code line number 35
You not able to pass your public key with request
You have to pass public key and check response with private key


var_dump your result set to check if that column exits

If i write var_dumo(I’d)
I have an app, with fetches data from server and uses GSON to populate it in recycler view, the debug version with minifyEnabled false works great, but when set to true, it returns null data from …
Hey Rohit,
Recently I have created a Android project where there is JSON data from server and then I have displayed that data on Recyclerview with scrolling.
Is this what you want?
Recently I have created a Android project where there is JSON data from server and then I have displayed that data on Recyclerview with scrolling.
Is this what you want?
Also there is vulnerability in your URL on the Stackoverflow post that leaks some personal information of students. If you are aware of it then it’s okay.
Instead of using mysqli_ferch_array ()
On line 104 use mysqli_ferch_assoc($query)
This should work
Use command and reply me if it did not work
On line 104 use mysqli_ferch_assoc($query)
This should work
Use command and reply me if it did not work
No same error is occure
thanks for notification due
On line 104 use mysqli_ferch_assoc($query)
This should work
Use command and reply me if it did not work
Instead pf using = in your query use LIKE and then type the command and tell me
drEmail LIKE ”$user’
Ping me if it did’t work
Didn’t worked on Proguard rules just used minify and shrink resources.😌
what is the error m
require ‘config/db.php’;
include(ROOT_PATH . “/helpers/middleware.php”);
require ‘helpers/validateUser.php’;
require_once ’emailController.php’;
$table = ‘users’;
$errors = array();
$id = “”;
$firstname = “”;
$lastname = “”;
$username = “”;
$email = “”;
$twitter = “”;
$telegram = “”;
$country = “”;
$zcladdress = “”;
$zslpaddress = “”;
$password = “”;
$passwordConf = “”;
$admin = “”;
$last_update_by = “”;
$updated_at = “”;
$ip2 = “”;
$isp = “”;
$country = “”;
$countrycode = “”;
$region = “”;
$city = “”;
$zip = “”;
$timezone = “”;
$as = “”;
// If user clicks on the sign-up button
if (isset($_POST[‘signup-btn’])) {
$firstname = ucfirst($_POST[‘firstname’]);
$lastname = ucfirst($_POST[‘lastname’]);;
$username = $_POST[‘username’];
$email = $_POST[’email’];
$twitter = $_POST[‘twitter’];
$telegram = $_POST[‘telegram’];
$zcladdress = $_POST[‘zcladdress’];
$zslpaddress = $_POST[‘zslpaddress’];
$country = $_POST[‘country’];
$password = $_POST[‘password’];
$passwordConf = $_POST[‘passwordConf’];
$errors = validateRegistration($_POST);
if (count($errors) === 0) {
unset($_POST[‘signup-btn’], $_POST[‘passwordConf’]);
$password = password_hash($password, PASSWORD_DEFAULT);
$token = bin2hex(random_bytes(50));
$verified = 0;
$sql = “INSERT INTO users (firstname, lastname, username, email, twitter, telegram, country, verified, token, zcladdress, zslpaddress, password) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)”;
$stmt = $conn->prepare($sql);
$stmt->bind_param(‘ssssssssssss’, $firstname, $lastname, $username, $email, $twitter, $telegram, $country, $verified, $token, $zcladdress, $zslpaddress, $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();
dd($_POST);
} else {
$errors[‘db_error’] = “Database error: failed to register”;
}
}
}
?>

Below the error message, echo $stmt->error