Self Answer to below, to get this to read: "anyL.php"
Is:
"any<?php echo $page;?>.php"
Placed as a form action.
-----------------------------------------------------------
I'm passing a variable to a page : $ page
The form inserts. However the redirect doesn't go, instead repeating the same page address as this insert (is blank page now).
header('Location: http://www.site.com/any.php');
//gives 403, and 404 forbidden error.
The header will only work to the base address: http://www.site.com But I need the extended address to send users where desired.
The meta refresh approach: results in the refresh being carried out before the insert page is even arrived at.
Form is using 'post' if this matters. What else can be done to remove the variable being appended to the pages following this insert page?