I'm in a little bit of a panic.

I have built my mobile website infrastructure based on a system of links like this: http://sample.com/#home, http://sample.com/#reports, etc.
I am using HTML5 data-role for the first time.

anyway, I have just discovered that this: http://sample.com/#reports?say=hello doesn't work! Or it isn't accessible by php anyway. Basically, when I do this:

if(isset($_REQUEST['say'])) {
    if($_REQUEST['say'] == 'hello') {
        echo 'Hello World!';
    }
}

Nothing happens. To clarify: php is working, because a simple echo displays fine.

any ideas? I'm stuck at this point and can't move forward with my project.

Thanks so much for any help you can give!!!

the # is a stop' in HTML for like links for example. You click it to do nothing. Thats why its made for.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.