I am having to learn some php to do what I thought was a very simple task.
I want to create a general purpose form, that I want to pass a variable to from a URL statement.
For example ..form.php?title=My+title&page=12
From what I have gathered from various sites (found via google), I should now have two variables in my php program called $title and $page
So if in my php program I want to display those fields e.g. <h1><?php echo $title; ?></h1> why don't they display?
I hope you guys are laughing at me, 🙂 and can tell me what simple mistake I am making.
Thanks