como dice el compañero puedes utilizar los campos input por ejemplo:
Código HTML:
Ver original<form action="pagina_que_recibe_los_valores.php" name="formulario" id="formulario"> <input type="hidden" name="variable1" id="variable1" value="<?php echo $variable1;?>">
<input type="hidden" name="variable2" id="variable2" value="<?php echo $variable2;?>">
y luego recoger la variable con
Código PHP:
Ver original$variable_1 = $_POST['variable1'];
$variable_2 = $_POST['variable2'];