Jump to content

Checking a variable $url against the current page URL


ilh

Recommended Posts

I've started a little project in PHP and f00king hell its getting complicated now (for me lol). TBH i have done some stuff which i had thought was going to be too complicated and now i've got stuck
on something which i think should be easy to resolve but i can't figure it out!

First i'll mumble a bit about what i've done but there is a question at the
bottom for any clever ppl :)

So far i have created a template. I then create the page by calling the
template and supplying it a small amount of details (i.e. a query). It then
figures out how many columns there are in the table, names them and then draws
the table and fills in all of the data from the table. Each column name can be
clicked on to arrange the data by that particular column (both ascending and
descending) and each record can be clicked on to load a different page with lots
of other info on it.

This has taken me about a week of pure struggling. But since it is a template
it takes me about 2 mins to now create a page - i just copy the page, rename it
and change the query and its all done

Now the problem i'm having is with a function i kind of erm found :P

Here it is:



public function IsURLCurrentPage($url)
{
if(strpos($_SERVER['PHP_SELF'], $url )==false)
{
return false;
}
else
{
return true;
}
}


Basically you pass it an URL and it looks up the URL in the address bar and
tells you whether the address you gave it is the current page.

This is all well an good until you use the URL to pass data to the script (i
have used it to pass the column name and direction in order to be able to
arrange the data by any column). As soon as there is this extra data it then
says they don't match and it doesn't display the page quite as it should.

For example the URL might look like /findpc.php?col=Name&dir=asc and i only
want it to check it against the findpc.php bit of the address

So all i need to do is tell it to ignore everything after (and including) the ?
when comparing the addresses. But how?

I'm sure i should be able to figure it out myself but I think my brain has
overloaded. I'm always wary about thinking too much cos i might not have enough
thought power left for emergencies :P
Link to comment
Share on other sites

This should do the trick:
[code]public function IsURLCurrentPage($url) {
    $pos = strpos($url,"?");
    if($pos !== FALSE) $url = substr($url,0,$pos);
    if(strpos($_SERVER['PHP_SELF'],$url) === FALSE) {
        return FALSE;
    } else {
        return TRUE;
    }
}[/code]
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.