Posts by AvicT • 27 points
7 posts
-
0
votes1
answer48
views -
0
votes1
answer52
viewsQ: How to use Olliders in Unity?
I’m creating a little basketball game, but I’m having trouble making the points system in this case (2 and 3). Right now I’m trying with Colliders and I’m having a hard time putting the two…
-
-1
votes1
answer27
viewsQ: How do I send including the database id in the email?
I tried that way but of the undifined index. php-based. <?php $conexao=mysqli_connect('localhost', 'root','','formulario'); mysqli_set_charset($conexao,'utf'); if ($conexao->connect_error) {…
-
0
votes1
answer51
viewsQ: SQL Select max is not working well
I have this code but it’s not working well I don’t know why: SELECT email, MAX(a4cor) as a4c, MAX(a4preto) as a4p, MAX(a3cor) as a3c, MAX(a3preto) as a3p, MAX(totalcopias) as total FROM dados GROUP…
-
1
votes1
answer190
viewsQ: Difficulty in select distinct sum
My goal is to show 1 email with 1 total but I’m having difficulty I’ve tried that code: SELECT DISTINCT email, totalcopias FROM dados https://i.stack.imgur.com/IkU71.png And I also tried this one:…
-
-1
votes1
answer50
viewsQ: How do I show the results of a certain year?
I’m trying to make a code where it only shows the results of a year but so nothing appears. <?php $conn = mysqli_connect('localhost','root','','formulario'); $resultado = mysqli_query($conn,…
-
-2
votes1
answer45
viewsQ: Why does it appear undifined index?
I have a code that sends some information but it’s not sending the full copies I don’t know why. I send everything else up to the file except the total copies. I used an echo="$totalcopias" instead…