Hi there,
I'm struggling to get a simple if statement to work. I am passing a country though to a page from a previous page ( ?country=Poland)
and then trying to evaluate it and display a specific bit of text if the country is for example'Germany'. Here's what I have:
<?php
if ($_Get["country"] = 'Germany') { echo "Company Name: Susensoftware AG<br />Contact Name: Axel Susen<br /><br />"; }
?>
But it is displaying the text even if the country isn't 'Germany' and I don't know why?!
Please laugh if I'm being dumb, but can anyone help?
Thanks in advance