Posts by Wesley Rodrigues • 49 points
7 posts
-
0
votes1
answer36
viewsQ: Error in consultation
What is wrong? I did everything right, researched and resumed the mistake: Notice: Trying to get property 'num_rows' of non-object in C:\xampp\htdocs\tipo\consulta-online.php on line 21 What can it…
-
1
votes3
answers687
viewsA: Update with PHP variable
Ready I solved the resolution is that $servidorBanco = "localhost"; $usuarioBanco = "root"; $senhaBanco = ""; $dadosBanco = "db"; $conexao = new mysqli($servidorBanco, $usuarioBanco, $senhaBanco,…
-
0
votes3
answers687
viewsQ: Update with PHP variable
I’m taking a beating with a variable update. Please someone can help me? $servidorBanco = "localhost"; $usuarioBanco = "root"; $senhaBanco = ""; $dadosBanco = "db"; $conexao = new…
-
0
votes1
answer93
viewsQ: HTTP(200) verification in PHP
I did my checking so, only in mine gave an error and in other verification systems did not give. I wonder where it was that I went wrong? $host = 'IP do HOST'; $conectado = @fsockopen($host, 80); if…
-
2
votes2
answers1316
viewsQ: Login Form Screen Flashes
I have a problem: I have a login screen that I did, but it keeps blinking. I didn’t want this to happen. I wanted the login form to be static with the images running in 5 minutes. The link does not…
-
0
votes3
answers349
viewsA: Mysqli + num_rows after a table query
For question of seized I will be providing the entire code via text on the link Code <?php ini_set('display_errors', true); error_reporting(E_ALL); // inclusao do arquivo de conexao ao banco de…
-
1
votes3
answers349
viewsQ: Mysqli + num_rows after a table query
This is supposed to be a login system with access levels that I’m trying to do, but it’s giving an error. What am I missing? I’ve tried everything and nothing. I’ve looked at the PHP documentation…