Can someone please help me get a simple working form to work on my site.

Recommended Answers

All 7 Replies

You need to explain better

I need a php and html code for a form that has the fields ,name,email,phone,comments,address

Yeah Farhan386 is absolutely rite......

shucksss... this guy so lazy, you asked for help with just making a simple form?

fine.....here ill give you a chance, but do you homework next time kiddo

<html>
<head>
</head>
<body>
<form>
<table>
<tr>
<td>Name</td><td><input type="text" name="name" /></td>
</tr>
<tr>
<td>E-mail</td><td><input type="text" name="email" /></td>
</tr>
<tr>
<td>Phone</td><td><input type="text" name="phone" /></td>
</tr>
<tr>
<td>Address</td><td><input type="text" name="address" /></td>
</tr>
<tr>
<td>Comments</td><td><textarea name="comments"></textarea></td>
</tr>
</table>
<input type="submit" name="btnsubmit" value="submit" />
</form>
</body>
</html>
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.