We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
$target_dir = "img/"; $target_file_name = $_FILES["file"]["name"]; $response = array();
// Check if image file is an actual image or fake image if (isset($_FILES["file"])) { if (move_uploaded_file($_FILES["file"]["tmp_name"], $target_file_name)) { $success = true; $message = "Successfully Uploaded"; } else { $success = false; $message = "Error while uploading"; } } else { $success = false; $message = "Required Field Missing"; } $response["success"] = $success; $response["message"] = $message; echo json_encode($response);
The text was updated successfully, but these errors were encountered:
No description provided.
Sorry, something went wrong.
No branches or pull requests
$target_dir = "img/";
$target_file_name = $_FILES["file"]["name"];
$response = array();
// Check if image file is an actual image or fake image
if (isset($_FILES["file"]))
{
if (move_uploaded_file($_FILES["file"]["tmp_name"], $target_file_name))
{
$success = true;
$message = "Successfully Uploaded";
}
else
{
$success = false;
$message = "Error while uploading";
}
}
else
{
$success = false;
$message = "Required Field Missing";
}
$response["success"] = $success;
$response["message"] = $message;
echo json_encode($response);
The text was updated successfully, but these errors were encountered: