Hey Phorum peeps 🙂,
I posted some wierdness yesterday and noone understood it so here goes... Let's say I set $x to the value "$y"... And now I want to call the var named $y by use of $x in a string... so I write something like:
echo "This is the content of y: $x";
Now ofcourse this writes
"This is the content of y: $y" - but I want php to interpret the value of $x and actually write the value of $y not just "$y". Someone said something about parse_str - but I didn't really see how that could help...
Any suggestions?
Gazoo...