I saw a similar post to my question but his solution did not work for me for some odd reason and it is making me age faster than Obama.
Basically I want to post data fro
You are passing your parameters via GET. So that you have to change
$dishname = $_POST['dishname']; $description = $_POST['description'];
to
$dishname = $_GET['dishname']; $description = $_GET['description'];
in your PHP script.