Skip to main content
Chimay10
Inspiring
April 24, 2010
Question

My simple form page isn't passing along the form variable I need to load my update page?

  • April 24, 2010
  • 1 reply
  • 479 views

I have created a recordset on my update page that specifies a form variable filter that matches the form ID on my simple form page.  When I enter the information on that page and submit, I go to the update page but nothing is loaded.  I've tested the update page using a URL parameter and it loads perfectly.  Why isn't my form variable working?

This topic has been closed for replies.

1 reply

Participating Frequently
April 24, 2010

We would need to see the code to be able to answer that. Also, the url -if avaiable- to observe the behavior.

Chimay10
Chimay10Author
Inspiring
April 24, 2010

Thanks for responding.  Here's the code.  I can't help with the url since I'm running on MAMP.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />

<title>Untitled Document</title>

<link href="assets/Trigger.css" rel="stylesheet" type="text/css" />

</head>

<body bgcolor="#FEFABA">

<div id="wrapper">

<table width="680" border="0">

  <tr bgcolor="#FEFABA">

    <td><img src="assets/images/featuredActivities/featuredActivity_logo.png" width="620" height="82" alt="Logo" /></td>

  </tr>

  <tr>

    <td height="98"><p>Update your information</p>

    <p>Please enter you Email Address and the click the Submit button</p></td>

  </tr>

  <tr>

    <td><form id="ml_email" name="ml_email" method="post" action="mailList_update.php">

      <label>

        <input name="text" type="ml_email" />

      </label>

      <label>

        <input type="submit" name="submit" id="submit" value="Submit" />

      </label>

    </form></td>

  </tr>

</table>

</div>

<!--

//-->

</body>

</html>

Chimay10
Chimay10Author
Inspiring
April 24, 2010

At your prompting, I too examined the code and found that my text field lacked proper coding.  Made the changes and voila!

Once again thanks.  At the very least you jump started my thinking.