I am a beginner so I might wrong but here elseif ($tireqty >= 10) && ($tireqty <= 49) I would use and extra bracket:
elseif (($tireqty >= 10) && ($tireqty <= 49)) {
...
}
Hope this is it:)
2
solved Can’t figure out why this isn’t working? [closed]