Is it possible to pass an id using location header?

<?php header(‘Location: viewPollResults.php?pollId= echo $pollId’); ?>

If it is possible, i’m having trouble appending the echo statement can anyone help please?

You need to concatenate, instead of trying to echo/print out the value

<?php header('Location: viewPollResults.php?pollId=' . $pollId); ?>

Thank you very much, you saved my bacon… :slight_smile: