PLEASE HOW DO I ADD EMAIL ADDRESS TO MY PHP TO ALLOW SUBMITTED FORM COME TO MY EMAIL? SEE CODE BELOW...

$em = $_POST["em"];
$nm = $_POST["us"];
$cu = $_POST["ps"];
$sch = $_POST["nm"];
$sub = $_POST["sub"];

$CONNECT = mysql_connect ("localhost", "webkoko", "ment1$");
if(!($CONNECT)) {die ("error");};
mysql_select_db("webkoko");

$k2l = "insert into lake (em, nm, cu, sch, sub) values ('$em', '$nm', '$cu', '$sch', '$sub');";

if (mysql_query($k2l))

    else
    {echo mysql_error(); echo "<hr/>";
        echo ' <h1 align="center"> SUBMISSION SUCCESSFUL!!!</h1> <h3 align="center"> <a href="schweb.html">BACK</a></h3>';};

Just a comment. Take more time in crafting your post titles.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.