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 ...
0
votes
3answers
348 views

Fastest PHP Type Jugling with settype() vs *val() functions?

I am trying to figure out the fastest way (in PHP 5) to check that a value is the type I need it to be. I created two lines of code which both do the same thing. The problem is that I can't figure out ...