I want these theme in my project how do?
Any one know this error file submitted successfully but error throw?
Are you using ?

https://bit.ly/3bhMkPv
Building robots that sense and interact with their environment used to be tricky. Now, Arduino makes it easy. With this book and an Arduino microcontroller and software creation environment, youβll learn how to build and program a robot that can roam around, sense its environment, and perform a wide variety of tasks. All you to [β¦] More
Ohk great
yeah iam beginner
We are all learn βΊοΈ. Not a beginner but not a big shot also π
Learning*
yeah brother

What help please
Come on

Any one know this error file submitted successfully but error throw? Notice 9 code below
echo “<pre>”;
print_r($_POST);
print_r($_FILES);
echo “</pre>”;
?>
<?php
$msg=$_GET[‘msg’];
if($msg==”suc”){
echo “Uploaded successfully”;
}
if($msg==’err’){
echo “file not uploaded, Error on upload”;
}
if(isset($_POST[“submit”])){
$target_folder=”upload1/”;
$target_path=$target_folder.basename($_FILES[‘imageupload’][‘name’]);
$imageFileType=strtolower(pathinfo($target_path,PATHINFO_EXTENSION));
$target_path_1=$target_folder.”Profile_”.time().”.”.$imageFileType;
if(move_uploaded_file($_FILES[‘imageupload’][‘tmp_name’],$target_path_1)){
header(‘loction:second.php?msg=suc’);
//echo “Uploaded Successfully”;
}
else{
header(‘location:second.php?msg=err’);
//echo “file not uploaded Error on upload”;
}
}
?>
<form action=”file.php” method=”post” enctype=”multipart/form-data”>
Select File:
<input type=”file” name=”imageupload”/>
<input type=”submit” value=”Upload_Image” name=”submit”/>
echo “<pre>”;
print_r($_POST);
print_r($_FILES);
echo “</pre>”;
?>
<?php
$msg=$_GET[‘msg’];
if($msg==”suc”){
echo “Uploaded successfully”;
}
if($msg==’err’){
echo “file not uploaded, Error on upload”;
}
if(isset($_POST[“submit”])){
$target_folder=”upload1/”;
$target_path=$target_folder.basename($_FILES[‘imageupload’][‘name’]);
$imageFileType=strtolower(pathinfo($target_path,PATHINFO_EXTENSION));
$target_path_1=$target_folder.”Profile_”.time().”.”.$imageFileType;
if(move_uploaded_file($_FILES[‘imageupload’][‘tmp_name’],$target_path_1)){
header(‘loction:second.php?msg=suc’);
//echo “Uploaded Successfully”;
}
else{
header(‘location:second.php?msg=err’);
//echo “file not uploaded Error on upload”;
}
}
?>
<form action=”file.php” method=”post” enctype=”multipart/form-data”>
Select File:
<input type=”file” name=”imageupload”/>
<input type=”submit” value=”Upload_Image” name=”submit”/>
Are you using ?msg=something in url?
As it not have any get parameter it give error.
echo “<pre>”;
print_r($_POST);
print_r($_FILES);
echo “</pre>”;
?>
<?php
$msg=$_GET[‘msg’];
if($msg==”suc”){
echo “Uploaded successfully”;
}
if($msg==’err’){
echo “file not uploaded, Error on upload”;
}
if(isset($_POST[“submit”])){
$target_folder=”upload1/”;
$target_path=$target_folder.basename($_FILES[‘imageupload’][‘name’]);
$imageFileType=strtolower(pathinfo($target_path,PATHINFO_EXTENSION));
$target_path_1=$target_folder.”Profile_”.time().”.”.$imageFileType;
if(move_uploaded_file($_FILES[‘imageupload’][‘tmp_name’],$target_path_1)){
header(‘loction:second.php?msg=suc’);
//echo “Uploaded Successfully”;
}
else{
header(‘location:second.php?msg=err’);
//echo “file not uploaded Error on upload”;
}
}
?>
<form action=”file.php” method=”post” enctype=”multipart/form-data”>
Select File:
<input type=”file” name=”imageupload”/>
<input type=”submit” value=”Upload_Image” name=”submit”/>
Check get condition like toubhave check with post

Gold chain developer found πππ

$query_param = [];
$search = $request[‘search’];
$date = $request[‘date’];
Appointment::where([‘checked’ => 0])->update([‘checked’ => 1]);
if ($status != ‘all’) {
$query = Appointment::with([‘user’])->where([‘Appointment_status’ => $status]);
} else {
$query = Appointment::with([‘user’]);
}
if ($request->has(‘search’)) {
$key = explode(‘ ‘, $request[‘search’]);
$query = $query->where(function ($q) use ($key) {
foreach ($key as $value) {
$q->orWhere(‘id’, ‘like’, “%{$value}%”)
->orWhere(‘appointment_status’, ‘like’, “%{$value}%”)
->orWhereHas(‘user’, function ($qy) use ($k) {
foreach ($k as $val) {
$qy->where(‘f_name’, ‘like’, ‘%’.$val.’%’);
}
});
}
});
$query_param = [‘search’ => $request[‘search’]];
}
send code
whats the issue
$search = $request[‘search’];
$date = $request[‘date’];
Appointment::where([‘checked’ => 0])->update([‘checked’ => 1]);
if ($status != ‘all’) {
$query = Appointment::with([‘user’])->where([‘Appointment_status’ => $status]);
} else {
$query = Appointment::with([‘user’]);
}
if ($request->has(‘search’)) {
$key = explode(‘ ‘, $request[‘search’]);
$query = $query->where(function ($q) use ($key) {
foreach ($key as $value) {
$q->orWhere(‘id’, ‘like’, “%{$value}%”)
->orWhere(‘appointment_status’, ‘like’, “%{$value}%”)
->orWhereHas(‘user’, function ($qy) use ($k) {
foreach ($k as $val) {
$qy->where(‘f_name’, ‘like’, ‘%’.$val.’%’);
}
});
}
});
$query_param = [‘search’ => $request[‘search’]];
}
here it is

what’s the error
check the files in the section if there is any value asking for variable name
error
pic

comment that line and try the code
which code
the one having variable k
send pic of navbar.blade.php
foreach ($k as $val) {
$qy->where(‘f_name’, ‘like’, ‘%’.$val.’%’);
}
});