I'm having an issue which i don't know how to get around. When I try compare data in my SQL query, it won't work because there is no 0 before the 1. Example, 01.
So if I try select something from a database where 1 < 50, it won't work. It needs to be 01 < 50.
$sql = mysqli_query($connect, "SELECT * FROM table WHERE del_thread < del_limit");
Is there anything i can add to del_thread to add the 0 beforehand.