I am getting an error message using header, to pass a get variable as php variable
using both ways below:
header( Location: file.php?variable=<?php echo $variable;?>);
header( Location: file.php?variable=$variable);
Can i use a variable inside header?
Thank´s in advance!!-