norhusna / Change-Request

Phoenix - Online Food Ordering (Ah Kong Restaurant)
0 stars 0 forks source link

CR10 - MENU MANAGEMENT #10

Closed norhusna closed 3 years ago

norhusna commented 3 years ago

Unable to add category in the menu management

puterinorliana commented 3 years ago

image

image

puterinorliana commented 3 years ago

<?php

//Add new menu (category)
if (isset($_POST['addmenu'])) {

    if (!empty($_POST['menuname'])) {
        $menuname = $sqlconnection->real_escape_string($_POST['menuname']);

        $addMenuQuery = "INSERT INTO tbl_menu (menuName) VALUES ('{$menuname}')";

        if ($sqlconnection->query($addMenuQuery) === TRUE) {
            header("Location: menu.php");
        } else {
            //handle
            echo "someting wong";
        }
    }

    //No input handle
    else {
        echo "...";
    }

}

?>

norhusna commented 3 years ago

the change request has been completed and the issues will be closed