html - Insert data from form into MYSQL using Node JS -
i trying inserting data mysql using node , express framework html form. code form : <html> <head> <title>personal information</title> </head> <body> <div id="info"> <h1>personal information</h1> <form action="/myaction" method="post"> <label for="name">name:</label> <input type="text" id="name" name="name" placeholder="enter full name" /> <br><br> <label for="email">email:</label> <input type="email" id="email" name="email" placeholder="enter email address" /> <br><br> <label for="city">city:</label> <input type="text" id="city" name="city" placeholder="enter city" /> <br><br> <label for=...