I know there is a way to pull a keyword from a url such as /help.php?keyword.... is there a way to pull multiple keywords from a url?
index.php?details=blah blah blah&details2=rah rah rah Code (markup): $blah = $_GET['details']; $rah = $_GET['details2']; echo "$blah $rah"; PHP: