Posted by David Haynes on 01/03/06 13:17
Leszek wrote:
> Right. I changed like you said.
>
> This is what i'm getting
> GET SET
> Array
> (
> )
> Does it mean that $_GET is empty?
> So,
> <A HREF=\"./szczegoly.php?nazwah=$nazwa_hotelu\">$nazwa_hotelu</A>
> doesn't send nazwah to $_GET??
>
>
>
>
>
I does indeed mean that $_GET is empty.
So, what web server are you using to serve up the pages?
I am suspicious about the './' prefix. Why is it there?
Also, I think you need to adjust the line to read:
<A HREF="szczegoly.php?nazwah=<?php echo $nazwa_hotelu;?>">$nazwa_hotelu</A>
-david-
[Back to original message]
|