url parameter reset?

Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default url parameter reset?

    I can take a url parameter primary key from page one to page two.(eg
    ....?order_id=7)

    Taking a different key from page two to page three or returning the key back
    to page one the orginal url parameter is still on the address line and confuses
    the browser. (eg ?order_id=?order_id=7)

    I have looked at the code and it seems to be passing the correct parameter

    Is there anyway to reset the url parameter in Dreamweaver ?
    It is to do with my browser (firefox 1.0)?

    Jim

    han_u_man Guest

  2. Similar Questions and Discussions

    1. How to reset
      I actually posted here before several months ago and got a good solution but I can't remember it or find the old post. Someone here gave...
    2. CF and IIS Reset Together?
      Wouldn't it be a good idea to restart ColdFusion and reset IIS during a CF outage? This assumes all web sites are CF-based.
    3. reset id
      I can't remember exactly but i think if you check the field and then click on 'operations' you can change the auto-increment there. Ross
    4. Date Parameter For Saved Parameter Queries
      Hi again, I finally got to using saved parameter queries in my application (a big thank you to Bob Barrows for helping me with this). Currently...
    5. DFS reset(s)
      I am using a Windows XP Pro computer on a Windows 2000 Active Directory domain. The admin has scripts setup to use 2-mapped drives (J: and K:)that...
  3. #2

    Default Re: url parameter reset?

    Using php mysql
    Below is code generated by update record field

    $updateGoTo = "invoice_filler.php?invoice_id=" .
    $row_rsSubinvoice['invoice_id'] . "";
    if (isset($_SERVER['QUERY_STRING'])) {
    $updateGoTo .= (strpos($updateGoTo, '?')) ? "&" : "?";
    $updateGoTo .= $_SERVER['QUERY_STRING'];
    }
    header(sprintf("Location: %s", $updateGoTo));

    Jim

    han_u_man Guest

  4. #3

    Default Re: url parameter reset?

    Hey, sorry to bleat. If this is repeat please point me to the thread -Jim
    han_u_man Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139