Posts by William Gravina • 35 points
5 posts
-
0
votes0
answers40
viewsQ: Show images registered in the database
I am beginner, do not know how to show pictures saved by name in the database // function function cadastraUsuario($conn, $nome_topper, $email_topper, $senha_topper, $data_nasc_topper, $sexo_topper)…
-
1
votes3
answers722
viewsQ: How to enter birth date in comic book?
How to enter date of birth in the comic book? Code taken from the form: $data = $_POST['dtn']; $dataP = explode('/', $data); $dataBd = $dataP[2].'-'.$dataP[1].'-'.$dataP[0]; function that sends the…
-
-1
votes3
answers423
viewsQ: How do I remove the characters from the variables in PHP to send to the database?
How I remove the characters "." "-", "/", "(" and ")" from the variables in PHP to send to the database? <?php session_start(); include("_cabecalho.php"); include("_bUsuario.php"); $btnCad =…
phpasked William Gravina 35 -
1
votes1
answer60
viewsQ: Cell phone form, auto complete phone
I am starting my studies, wanted to know how to do for when I type in the form the phone number EX: 00000000000 , the form will complete the fields ex: (00) 0 00000000…
-
0
votes1
answer33
viewsQ: Enter data in db by php
I am trying to register data in the database by php, but it does not register in utf8, but when I register directly in the database it registers in uf8. <?php include("conecta.php"); function…