Cain
Posts: 86
|
| Posted: 11/22/2004, 6:53 AM |
|
New to Code Charge here, I am trying try to use a record form to submit some user info into a database, and then redirect to another form where I can enter some more info for another database. Later on I will make one project that will combine these two but I need this first.
The problem I am having is that I don't get any values from Get or Post for the page I redirect to. I have checked for any values that are coming in, but nothing is being sent and I did specify the form to use Get. I also see the redirect line that has the following:
$Redirect = "errcode.php" . "?" . CCGetQueryString("QueryString", Array("ccsForm"));
If I am assuming correctly, the CCGetQueryString should put the parameters in the URL of the next errcode page to be pulled as a GET.
I have tried using the following:
CCGetParam
CCGetQueryString with the all configuration
Any ideas?
|
 |
 |
klwillis
Posts: 428
|
| Posted: 11/23/2004, 7:45 AM |
|
This should help. 
http://forums.codecharge.com/posts.php?post_id=50265&s_keyword=Action
_________________
Kevin Willis, VP/CIO
HealthCare Information Technology Specialist
http://www.nexushealthcare.com
"Fast - Convenient - Quality-Care"
Medical Software Consulting Services
Email : klwillis@nexushealthcare.com
Skype : klwillis2006 |
 |
 |
klwillis
Posts: 428
|
| Posted: 11/23/2004, 2:22 PM |
|
You can modify the call to CCGetQueryString to also work:
CCGetQueryString("ALL","ccsForm");
I don't prefer doing it this way, since all the values from a form
get placed in the URL.
Quote Cain:
New to Code Charge here, I am trying try to use a record form to submit some user info into a database, and then redirect to another form where I can enter some more info for another database. Later on I will make one project that will combine these two but I need this first.
The problem I am having is that I don't get any values from Get or Post for the page I redirect to. I have checked for any values that are coming in, but nothing is being sent and I did specify the form to use Get. I also see the redirect line that has the following:
$Redirect = "errcode.php" . "?" . CCGetQueryString("QueryString", Array("ccsForm"));
If I am assuming correctly, the CCGetQueryString should put the parameters in the URL of the next errcode page to be pulled as a GET.
I have tried using the following:
CCGetParam
CCGetQueryString with the all configuration
Any ideas?
_________________
Kevin Willis, VP/CIO
HealthCare Information Technology Specialist
http://www.nexushealthcare.com
"Fast - Convenient - Quality-Care"
Medical Software Consulting Services
Email : klwillis@nexushealthcare.com
Skype : klwillis2006 |
 |
 |
|