Joined
Last Seen
-3 Reputation Points
- 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
Web Development x 1
Favorite Tags
php x 1
1 Posted Topic
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 …
The End.
magento12