Visa ett inlägg
Oläst 2009-11-18, 18:00 #16
johancmedia johancmedia är inte uppkopplad
Nykomling
 
Reg.datum: Oct 2009
Inlägg: 31
johancmedia johancmedia är inte uppkopplad
Nykomling
 
Reg.datum: Oct 2009
Inlägg: 31
Citat:
Ursprungligen postat av coldKingdom Visa inlägg
och det här?

PHP-kod:
<?php

$url 
= (!empty($_SERVER['HTTPS'])) ? "https://" "http://";
$url .= $_SERVER["HTTP_HOST"];

if (
$_GET):
    
$counter count($_GET);
    
$x 1;
    
$values "?";

    foreach (
$_GET as $q => $v):
        
$values .= $q."=".$v;
        
        if (
$x $counter):
            
$values .= "&";
        endif;
        
        
$x++;
    endforeach;
    
    
$url .= $values;
endif;

echo 
$url;

?>
Den visar bara http://www.domain.com
johancmedia är inte uppkopplad   Svara med citatSvara med citat