• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

web site coding help

There might be a simpler way, but you could use php and do it this way..I think this would work, I'm not great with php



<form action="redirect.php" method=post>
pagenum<br><input type=text name="page" size=2><br>
<input type=submit>


***redirect.php***
<?php
$page = $_POST[page];
$url = "http://www.guyver01.com/".$page;

header ("Location: $URL");
?>
 
Originally posted by: Fiveohhh
There might be a simpler way, but you could use php and do it this way



<form action="redirect.php" method=post>
pagenum<br><input type=text name="page" size=2><br>
<input type=submit>


***redirect.php***
<?php
$page = $_POST[page];
$url = "http://www.guyver01.com/".$page;

header ("Location: $URL");
?>


You could use JavaScript. I don't want to look up the methods , but it should be on W3C Schools
 
Back
Top