Debería funcionarte, aumque supongo que ese código que mostrás no está completo, puede que haya un error en otra parte
banderas.html
Código HTML:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <script type="text/javascript"> //<![CDATA[
/* script */
function banderas(){
var c= "0001";
window.location = "banderas.php?bandera=usa&codigo=" + c;
}
//]]>
banderas.php
Código PHP:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>titulo</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
</head>
<body>
<?php
$ban=$_GET["bandera"];
$cod=$_GET["codigo"];
echo "$ban - $cod";
?>
</body>
</html>
Saludos