Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
"Edit this page"
#17
Thanks. Will look at it else I wrote functions that I use in my common unit that I share between my plugins that figures the url out for me. Might use that and update this plugin as it was before I started writing the url..

It looks as following (sorry english part of brain not working today)

Code:
function getBaseSiteURLandAddChar(&$baseURL,&$addChar){
//get the base url for normal or FANCY URL's.. if fancy it will remove all added values and keep url string for normal it will insure the id gets kept
  $baseURL = $_SERVER["REQUEST_URI"];
  if (strpos($baseURL,'?id=') !== false) {
    $id = $_GET['id'];
    $baseURL = preg_replace("/\?id=.*/i","",$baseURL);
    $baseURL .= "?id=$id";
    $addChar = '&';
  }  else {
    $addChar = '?';  
    $baseURL = preg_replace("/\?.*/i","",$baseURL);
  }
}
Stopped developing on GS Plugins. Anybody welcome to take the projects over. Thanks for all the support all.
Reply


Messages In This Thread
"Edit this page" - by Carlos - 2010-03-15, 02:01:31
"Edit this page" - by Zegnåt - 2010-03-15, 02:13:24
"Edit this page" - by JWH_Matthew - 2010-03-15, 06:08:22
"Edit this page" - by Carlos - 2010-08-13, 01:33:21
"Edit this page" - by Oleg06 - 2010-08-13, 06:03:35
"Edit this page" - by daguy - 2010-08-14, 04:02:31
"Edit this page" - by ccagle8 - 2010-08-14, 12:13:15
"Edit this page" - by Carlos - 2010-08-15, 00:38:50
"Edit this page" - by dominionit - 2010-09-13, 02:43:33
"Edit this page" - by Zegnåt - 2010-09-13, 22:53:27
"Edit this page" - by dominionit - 2010-09-13, 22:57:55
"Edit this page" - by dominionit - 2010-09-14, 14:24:30
"Edit this page" - by El-Cherubin - 2010-10-17, 23:22:36
"Edit this page" - by dominionit - 2010-10-18, 01:59:54
"Edit this page" - by El-Cherubin - 2010-10-18, 02:04:18
"Edit this page" - by Zegnåt - 2010-10-18, 03:07:22
"Edit this page" - by dominionit - 2010-10-18, 04:45:33
"Edit this page" - by dominionit - 2010-10-18, 05:13:45
"Edit this page" - by Carlos - 2010-10-18, 05:48:18
"Edit this page" - by dominionit - 2010-10-18, 05:59:30



Users browsing this thread: 1 Guest(s)