Posts by Felipe Umpierre • 12 points
2 posts
-
-2
votes4
answers935
viewsA: How the header() function works in PHP
Have you tried using the ob_start at the beginning of the code to clear the buffer? Whenever that happened to me, I used that function, that solved the problem, I hope it helps you too!…
-
0
votes4
answers1708
viewsA: Delete only selected PHP checkbox
Have you checked whether the $item variable has the correct values? and whether DELETE SQL is correct? I also noticed that you create the variable $linha = mysql_fetch_assoc($dados); and then…