I'm trying to create an automatic refresh url as below but it doesn't seem to be working.
<?php
$lastid = 12345
redirect = echo the_permalink(get_option( 'cts_return_page' )).'?transid='.$lastid';
echo '<meta http-equiv="refresh" content="1; url='$redirect'">';
?>
The url I want it to redirect/refresh to would be http://example.com/page-from-options?transid=12345
Any suggestions on what I'm doing wrong?