why there is undefined index notice though variable is defined?
I am getting an undefined index
notice in my php code though I defined a variable and submitting it with POST method. Here's the code:
<form action="" method="post">
<button class="subbutton button1" type="button" onclick="return
toggleMe('image')">Update Image</button><br>
<div id="image" style="display:none">
<center>
<table style="width:80%;">
<tr>
<td><input type="text" name="img_rn" placeholder="Enter Roll No."
class="textstyle" required="required"/></td>
<td><input type="file" name="image_src" id="fileToUpload"
required="required" style="color:white;"/></td>
<td><button class="button button1" type="submit" name="img_upld"
class="textstyle" required="required">Upload</button></td>
</tr>
</table>
</center>
</div>
</form>
php code:
<?php
if(isset($_POST["img_upld"]))
$img_rn=$_POST["img_rn"];
$cname = $_FILES['image_src']['name'];
if(!empty($cname))
$tname = $_FILES['image_src']['tmp_name'];
$size = $_FILES['image_src']['size'];
$fext = pathinfo($cname, PATHINFO_EXTENSION);
// Allow certain file formats
if($fext != "jpg" && $fext != "png" && $fext != "jpeg"
&& $fext != "gif" )
echo "<center>Sorry, only JPG, JPEG, PNG & GIF files are allowed.
</center>";
$savename = $img_rn.".".$fext;
$finalfile = "../uploads/$savename";
if(!empty($cname))
if($size < 500000)
$check = move_uploaded_file($tname,$finalfile);
if($check)
$upld=$conn->prepare("UPDATE users SET image=:savename WHERE
rollno=:img_rn");
//binding
$upld->bindparam(":savename",$savename);
$upld->bindparam(":img_rn",$img_rn);
$result=$upld->execute();
echo "<center style='color:white'>File uploaded successfully!</center>";
else
echo "<center style='color:white'>File upload failed.</center>";
else
echo "<center style='color:white'>File size too large.</center>";
?>
I have already defined a variable and also submitting it via POST methd, but still I am getting error Notice: Undefined index: image_src in C:wamp64wwwarsod_dynamicadminhome.php on line 368
not getting what is problem. Please help.
php image-uploading undefined-index
add a comment |
I am getting an undefined index
notice in my php code though I defined a variable and submitting it with POST method. Here's the code:
<form action="" method="post">
<button class="subbutton button1" type="button" onclick="return
toggleMe('image')">Update Image</button><br>
<div id="image" style="display:none">
<center>
<table style="width:80%;">
<tr>
<td><input type="text" name="img_rn" placeholder="Enter Roll No."
class="textstyle" required="required"/></td>
<td><input type="file" name="image_src" id="fileToUpload"
required="required" style="color:white;"/></td>
<td><button class="button button1" type="submit" name="img_upld"
class="textstyle" required="required">Upload</button></td>
</tr>
</table>
</center>
</div>
</form>
php code:
<?php
if(isset($_POST["img_upld"]))
$img_rn=$_POST["img_rn"];
$cname = $_FILES['image_src']['name'];
if(!empty($cname))
$tname = $_FILES['image_src']['tmp_name'];
$size = $_FILES['image_src']['size'];
$fext = pathinfo($cname, PATHINFO_EXTENSION);
// Allow certain file formats
if($fext != "jpg" && $fext != "png" && $fext != "jpeg"
&& $fext != "gif" )
echo "<center>Sorry, only JPG, JPEG, PNG & GIF files are allowed.
</center>";
$savename = $img_rn.".".$fext;
$finalfile = "../uploads/$savename";
if(!empty($cname))
if($size < 500000)
$check = move_uploaded_file($tname,$finalfile);
if($check)
$upld=$conn->prepare("UPDATE users SET image=:savename WHERE
rollno=:img_rn");
//binding
$upld->bindparam(":savename",$savename);
$upld->bindparam(":img_rn",$img_rn);
$result=$upld->execute();
echo "<center style='color:white'>File uploaded successfully!</center>";
else
echo "<center style='color:white'>File upload failed.</center>";
else
echo "<center style='color:white'>File size too large.</center>";
?>
I have already defined a variable and also submitting it via POST methd, but still I am getting error Notice: Undefined index: image_src in C:wamp64wwwarsod_dynamicadminhome.php on line 368
not getting what is problem. Please help.
php image-uploading undefined-index
add a comment |
I am getting an undefined index
notice in my php code though I defined a variable and submitting it with POST method. Here's the code:
<form action="" method="post">
<button class="subbutton button1" type="button" onclick="return
toggleMe('image')">Update Image</button><br>
<div id="image" style="display:none">
<center>
<table style="width:80%;">
<tr>
<td><input type="text" name="img_rn" placeholder="Enter Roll No."
class="textstyle" required="required"/></td>
<td><input type="file" name="image_src" id="fileToUpload"
required="required" style="color:white;"/></td>
<td><button class="button button1" type="submit" name="img_upld"
class="textstyle" required="required">Upload</button></td>
</tr>
</table>
</center>
</div>
</form>
php code:
<?php
if(isset($_POST["img_upld"]))
$img_rn=$_POST["img_rn"];
$cname = $_FILES['image_src']['name'];
if(!empty($cname))
$tname = $_FILES['image_src']['tmp_name'];
$size = $_FILES['image_src']['size'];
$fext = pathinfo($cname, PATHINFO_EXTENSION);
// Allow certain file formats
if($fext != "jpg" && $fext != "png" && $fext != "jpeg"
&& $fext != "gif" )
echo "<center>Sorry, only JPG, JPEG, PNG & GIF files are allowed.
</center>";
$savename = $img_rn.".".$fext;
$finalfile = "../uploads/$savename";
if(!empty($cname))
if($size < 500000)
$check = move_uploaded_file($tname,$finalfile);
if($check)
$upld=$conn->prepare("UPDATE users SET image=:savename WHERE
rollno=:img_rn");
//binding
$upld->bindparam(":savename",$savename);
$upld->bindparam(":img_rn",$img_rn);
$result=$upld->execute();
echo "<center style='color:white'>File uploaded successfully!</center>";
else
echo "<center style='color:white'>File upload failed.</center>";
else
echo "<center style='color:white'>File size too large.</center>";
?>
I have already defined a variable and also submitting it via POST methd, but still I am getting error Notice: Undefined index: image_src in C:wamp64wwwarsod_dynamicadminhome.php on line 368
not getting what is problem. Please help.
php image-uploading undefined-index
I am getting an undefined index
notice in my php code though I defined a variable and submitting it with POST method. Here's the code:
<form action="" method="post">
<button class="subbutton button1" type="button" onclick="return
toggleMe('image')">Update Image</button><br>
<div id="image" style="display:none">
<center>
<table style="width:80%;">
<tr>
<td><input type="text" name="img_rn" placeholder="Enter Roll No."
class="textstyle" required="required"/></td>
<td><input type="file" name="image_src" id="fileToUpload"
required="required" style="color:white;"/></td>
<td><button class="button button1" type="submit" name="img_upld"
class="textstyle" required="required">Upload</button></td>
</tr>
</table>
</center>
</div>
</form>
php code:
<?php
if(isset($_POST["img_upld"]))
$img_rn=$_POST["img_rn"];
$cname = $_FILES['image_src']['name'];
if(!empty($cname))
$tname = $_FILES['image_src']['tmp_name'];
$size = $_FILES['image_src']['size'];
$fext = pathinfo($cname, PATHINFO_EXTENSION);
// Allow certain file formats
if($fext != "jpg" && $fext != "png" && $fext != "jpeg"
&& $fext != "gif" )
echo "<center>Sorry, only JPG, JPEG, PNG & GIF files are allowed.
</center>";
$savename = $img_rn.".".$fext;
$finalfile = "../uploads/$savename";
if(!empty($cname))
if($size < 500000)
$check = move_uploaded_file($tname,$finalfile);
if($check)
$upld=$conn->prepare("UPDATE users SET image=:savename WHERE
rollno=:img_rn");
//binding
$upld->bindparam(":savename",$savename);
$upld->bindparam(":img_rn",$img_rn);
$result=$upld->execute();
echo "<center style='color:white'>File uploaded successfully!</center>";
else
echo "<center style='color:white'>File upload failed.</center>";
else
echo "<center style='color:white'>File size too large.</center>";
?>
I have already defined a variable and also submitting it via POST methd, but still I am getting error Notice: Undefined index: image_src in C:wamp64wwwarsod_dynamicadminhome.php on line 368
not getting what is problem. Please help.
php image-uploading undefined-index
php image-uploading undefined-index
asked Nov 13 '18 at 9:08
StrooksStrooks
537
537
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You need to specify multipart/form-data when sending files.
<form action="" method="post" enctype="multipart/form-data">
See this helpful post for more information on enctype encoding.
You should always check for isset
and handle the result accordingly.
Thanks, it worked!
– Strooks
Nov 13 '18 at 9:15
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53277392%2fwhy-there-is-undefined-index-notice-though-variable-is-defined%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You need to specify multipart/form-data when sending files.
<form action="" method="post" enctype="multipart/form-data">
See this helpful post for more information on enctype encoding.
You should always check for isset
and handle the result accordingly.
Thanks, it worked!
– Strooks
Nov 13 '18 at 9:15
add a comment |
You need to specify multipart/form-data when sending files.
<form action="" method="post" enctype="multipart/form-data">
See this helpful post for more information on enctype encoding.
You should always check for isset
and handle the result accordingly.
Thanks, it worked!
– Strooks
Nov 13 '18 at 9:15
add a comment |
You need to specify multipart/form-data when sending files.
<form action="" method="post" enctype="multipart/form-data">
See this helpful post for more information on enctype encoding.
You should always check for isset
and handle the result accordingly.
You need to specify multipart/form-data when sending files.
<form action="" method="post" enctype="multipart/form-data">
See this helpful post for more information on enctype encoding.
You should always check for isset
and handle the result accordingly.
edited Nov 13 '18 at 9:16
answered Nov 13 '18 at 9:10
atomsatoms
1,92911123
1,92911123
Thanks, it worked!
– Strooks
Nov 13 '18 at 9:15
add a comment |
Thanks, it worked!
– Strooks
Nov 13 '18 at 9:15
Thanks, it worked!
– Strooks
Nov 13 '18 at 9:15
Thanks, it worked!
– Strooks
Nov 13 '18 at 9:15
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53277392%2fwhy-there-is-undefined-index-notice-though-variable-is-defined%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown