URL
x.php?foo=100
x.php
$x = $_GET['foo'];
if ($x = 100) {
echo "yeah";
}else{
echo "no";
}
My code doesnt work, where is error?
URL
x.php?foo=100
x.php
$x = $_GET['foo'];
if ($x = 100) {
echo "yeah";
}else{
echo "no";
}
My code doesnt work, where is error?