I am currently displaying errors on my website using this code:
<?php
$failure = strip_tags($_GET['failure']);
if($failure!=""){
echo '<div class="error">';
echo $failure;
echo '</div>';
}
?>
However, I am curious if this is safe. Is it?
|
I am currently displaying errors on my website using this code:
However, I am curious if this is safe. Is it? | |||||
feedback
|
|
while this solution would change a little bit your approach, why not have an errors.php file with this structure?
And the just send an ID as the error:
Then, include this code where you usually display your errors:
Just be sure to include errors.php in your config.php file (or whatever your main configuration's file name is). Why?
IMHO it is much much safer to use ints than strings in this case. | |||||||||||||||
feedback
|
|
You can (and of course always should, hat tip @DaveRandom) do a If you do all that, this looks safe. Note that there is a limit on the maximum size of a GET request - 1kb is a safe maximum amount. | |||||
feedback
|
|
Depending on what version of PHP you have, | |||
|
feedback
|