Skip to content
New issue

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

PhP Code for this Git #4

Open
dhavalkvaria opened this issue Apr 19, 2023 · 1 comment
Open

PhP Code for this Git #4

dhavalkvaria opened this issue Apr 19, 2023 · 1 comment

Comments

@dhavalkvaria
Copy link

dhavalkvaria commented Apr 19, 2023

$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);

@dhavalkvaria
Copy link
Author

No description provided.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant