Posts by tigas • 1 point
2 posts
-
0
votes1
answer185
viewsA: Graphics with PHP
If you can use the google API, it’s very simple Just select the data you want : $sql = "SELECT sum(dados1) FROM Table WHERE x='y' " $result = $conn->query($sql); if ($result->num_rows > 0)…
-
-4
votes1
answer97
viewsA: Blank email with PHP
<?php $nome = $_REQUEST['nome']; $email = $_REQUEST['email']; $mensagem = $_REQUEST['mensagem']; $titulo = 'Email Curso PHP'; $dest = '[email protected]'; $dados = 'Nome :'.$nome." Email:…