Posts by lucas • 1 point
2 posts
-
-4
votes2
answers67
viewsA: Post PHP , duplicates, triples, quadruple records in Msql
<?php include "../confi.php"; if (isset($_POST["action"])) { if ($_POST["action"] == "Incluir") { $sql = " INSERT INTO usuario ( usuario_email, usuario_senha) VALUES(?,?)"; $statement =…
-
0
votes0
answers45
viewsQ: How to hide the <img> tag icon when the image is not found?
I made a button of upload which displays a preview of the selected image, but for this, the tag img has its attribute src empty. So this icon which is pointed with the arrow. I’ve tried everything,…