In the following code the Submit button actualy says "Submit Query" on my page but I can not find anywhere that I have written "Submit Query" in the file. Any ideas? I would like to change the second one.

<html>
<head>
<title>Simiply Query</title>
<link rel="stylesheet" type="text/css" href="mystyles.css" media="screen" />
</head>

<body>

Query Database Form
<br><br>
<form action="process3.php" method="POST">
<div id="form1">
<table width="25%">

<tr> <td>First Name:</td> 
     <td align="right"> <input type="text" name="fname"></td></tr>

<tr> <td>Last Name:</td>
     <td align="right"> <input type="text" name="lname"></td></tr>

<tr> <td>Email:</td>
     <td align='right'> <input type="text" name="email"></td></tr>

    </select></td><td><input type="submit"></td></tr>
</table>
</form>

<br><br>
Insert Database Form
<br><br>
<form action="insert.php" method="POST">
<div id="form2">
<table width="25%">

<tr> <td>First Name:</td>
     <td align="right"> <input type="text" name="fname"></td></tr>

<tr> <td>Last Name:</td>
     <td align="right"> <input type="text" name="lname"></td></tr>

<tr> <td>Email:</td>
     <td align='right'> <input type="text" name="email"></td></tr>

        </select></td><td><input type="submit"></td></tr>
</form>
</table>
</div>
</body>
</html>

Recommended Answers

All 2 Replies

If you omit the value="" attribute "Submit Query" is the default value.

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.