Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
2
0 Endorsements
Ranked #107.70K
~256 People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums
Favorite Tags
php x 1

1 Posted Topic

Member Avatar for inni2626

Undefined index errors normally come from variables being called for but don't necessarily exist yet. So put all $_GET, $_POST values into a local variable and validate the empty condition, like $drinks = $_POST['drink']; Alternatively you can set the error reporting off on the server like <?php error_reporting(0); //Disable …

Member Avatar for magento12
0
255

The End.