How can I use sc_redir to redirect to a page having the form name and parameters in variables?
$targetpage =“form_test_page”;
$parameters = “parm1=abcd; parm2=xxx; parm3=12345”;
For example sc_redir($targetpage, $parameters);
How can I use sc_redir to redirect to a page having the form name and parameters in variables?
$targetpage =“form_test_page”;
$parameters = “parm1=abcd; parm2=xxx; parm3=12345”;
For example sc_redir($targetpage, $parameters);
sc_redir(form1,id1={id1};vid1={vid1};idevaluacion=$videvaluacion2;Atercero_tipo=0;Awhere=$vAwhere;fecha=$vfecha2;vERMproyecto={idprojecto});
here you are with fields, variables and values
Thank you for your answer, but this is also described in the manual very clear.
My question is how can I pass the form name from a variable and the whole parameter string as a variable not only the values.
I think you should create a blank application that takes your POST parameters and redirects them to another application.
You must first evaluate the parameters.
I already tried that. the problem is that when I return from the redirected application, it comes back to the blank app. And also this doesn’t make it dynamic. I will have to make blank apps for every case.