Trying to pass variables via GET through a header redirect.
sometimes the $search_term has an ' in it.
header( "Location: http://www.letsgo77.com/venue_search.php?venue=".urlencode($search_term));
It redirects just fine, but if I input joe's it would look like joe\'s. Without using stripslashes, it looks like joe\\'s
Something simple I'm sure. Any help?