Ask a Question related to Dreamweaver AppDev, Design and Development.
-
han_u_man #1
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
-
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... -
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. -
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 -
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... -
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... -
han_u_man #2
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
-
han_u_man #3
Re: url parameter reset?
Hey, sorry to bleat. If this is repeat please point me to the thread -Jim
han_u_man Guest



Reply With Quote

