Hi,
I have a database of records and when a record is updated, I want it to stay on the same record page that the user is updating on submit.
If I do it like this, it always retrieves the first record on submit and not the one that I just updated. Here is the code:
$submiturl = "./base_edit.php?";
If i use the following code, the record on submit comes up blank.
$submiturl = "./base_edit.php?" . ""."currentrow_fd0=" . urlencode($row[0]) . "" . "\" >" . $cellvalue . "";
😕 They both still update on submit, but I just can't get it to stay on the same record page that the user is currently updating on submit. I need it so when they update the page or record, they stay on the same page on submit so they can see the updated result. Hope this makes sense.
Any help is appreciated. Thanks!
Regards,
Sara