I need some help to put this simple code into MVC any help would be appreciated. It is a simple form which retrieves data from an SQL DB.. it works fine as one file but I have problems to put it in MVC, especially with submit part.
I know for many people this is an easy thing to do in MVC... but i am in a learning process. Plz help
=================== HTML ========
</head>
<p><body>
<h3>Search Contacts Details</h3>
<p>You may search either by first or last name</p>
<form method="post" action="search_start.php?go" id="searchform">
<input type="text" name="name">
<input type="submit" name="submit" value="Search">
</form>
</body>
</html>
Bookmarks