Never mind fixed it
Announcement
Collapse
No announcement yet.
Variables in URLs
Collapse
X
-
PHP Code:$variable = str_replace("%20", " ", $original string);
Or you could just to something like this:
say someone enters a variable like this: index.php?love=i-like-foobar
PHP Code:$variable = str_replace("-", " ", $_GET['love']);
whatever you would like.
Comment