• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

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

Explorer ,
Apr 24, 2010 Apr 24, 2010

Copy link to clipboard

Copied

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?

TOPICS
Server side applications

Views

406

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Apr 24, 2010 Apr 24, 2010

Copy link to clipboard

Copied

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

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Apr 24, 2010 Apr 24, 2010

Copy link to clipboard

Copied

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>

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Apr 24, 2010 Apr 24, 2010

Copy link to clipboard

Copied

LATEST

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.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines