pass php var into javascript :
<script language="JavaScript"> // Redirection Delay setTimeout("location.href='fstep3.php4?pt="<?=$pt?>"&analyse="<?=$analyse?>"&total="<?=$pointTotal?>"'",2000); </script>
this way it doesn't work
Well, it should...unless your variables are out of scope or something like that.
Diego
you need not have to write = sign before $ in php tag i think if you remove that then it would work
I think = is a shortcut for print, so it is necessary... Does it work if you replace the PHP with normal words?
I do see one problem with the code, and that is that there are some extra double-quote characters in there...
"location.href='fstep3.php4?pt=<?=$pt?>&analyse=<?=$analyse?>&total=<?=$pointTotal?>'"