Tagged Questions

1
vote
4answers
135 views

PHP GET Question: How do I set a variable value only if it's not in the query string?

I know how to get the value from the query string if the parameter exists: $hop = $_GET['hop']; But I also need to set a default value IF it's not in the query string. I tried this and it didn't ...