Jump to content

Undefined Index


midwestdesignfirm

Recommended Posts

I am getting an undefined index that refers to this part of the code:

 

 

 

$session_id = $_COOKIE[""];

 

$action = $_GET['action'];

 

if ($action == "add" && !empty($HTTP_POST_VARS["artid"])) {

 

$artid = $HTTP_POST_VARS["artid"];

 

 


do i need to change  $HTTP_POST_VARS["artid"];  

to $_GET["artid"]

 

Thank you in advance.


 

 

Link to comment
https://forums.phpfreaks.com/topic/286264-undefined-index/
Share on other sites

Avoid using $HTTP_POST_VARS unless you don't really have a choice.

 

You should define it even to NULL.

<?php

$session_id = $_COOKIE[""];
 
$action = $_GET['action'];
 
$HTTP_POST_VARS = NULL; 

if ($action == "add" && !empty($HTTP_POST_VARS["artid"])) {
 
$artid = $HTTP_POST_VARS["artid"];

}
Link to comment
https://forums.phpfreaks.com/topic/286264-undefined-index/#findComment-1469289
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.