Posts by Well • 3 points
2 posts
-
0
votes1
answer56
viewsQ: How to delete record with simple Mysql quotes via PHP?
<?php require 'conn.php'; $del_cidade = mysql_real_escape_string($_POST['del_cidade']); $pop = mysql_real_escape_string($_POST['l_pop']); $excluir = mysql_query("DELETE FROM pops WHERE pop =…
-
0
votes1
answer61
viewsQ: How to list values of multiple queries in a single table?
I have a table with the columns attendant, total/day and total/month. I listed on tr/td the names of people through the first MYSQL query. I need through the second query to sum up the records of…