I have a PHP form embedded and can submit values after entering.
I am also able to call up and list the records that were submitted by the form.
I want to be able to click a "View" link that is displayed next to each record that will bring up the original form with the values entered in the correct place.
I have successfully done this in dreamweaver, it is the DRUPAL aspect that I cannot get to work.
This is the working link that allows me to do it as a normal php page outside of drupal.
viewpixconfigs.php?id= echo $row_viewconfigs['id'];
^
My URL in drupal is simply viewconfig. I have tried replacing "viewpixconfigs.php?id" in the above example with my page URL, ?q=viewconfig?id, and also as its "node" value.
Can anyone help? Thank you.
Comments
Surely your new url should
Surely your new url should be
?q=viewconfig&id, rather than using two ? query marks.--
Ixis (UK): Drupal support, Drupal hosting.
Thank you, works great
That worked great. Thank you very much for your help.