header

From: Alain Dhaene (alain.dhaene_at_worldonline.be)
Date: 12/30/03


Date: Tue, 30 Dec 2003 14:20:56 +0100

Hi,

I have this problem

<?php

$doc = "name";

$result = "code";

header('Location: content2.php?docCode= $doc + resultCode=$result');

?>

I have two variabeles (doc and result) i want to pass to content2.php

There i will get them

$doc_n = $_GET('docCode');

$result_n=$_GET('resultCode');

What's wrong with my header?

Thanks

Alain