Questions tagged as 'mysqli'

3
answers

How to create the same codes to run in php7? [duplicate]

Good people I'm a bit late in things and, until now I could not learn php7 again. Well those files (3) there I am showing you is the way I do to show database record in a show way. I would like to know if there is any way to create an updat...
asked by 09.09.2018 / 04:54
1
answer

Connection problems [closed]

When sending the form to register the email entered in the field it should simply register in the database, but it does not register, how can I resolve it? <?php $conect = mysqli_connect('127.0.0.1','root@localhost','') or die ("err...
asked by 25.10.2017 / 20:56
2
answers

About Object Oriented in PHP

I have my connection.php file with the code below: $banco_hostname = "localhost"; $banco_usuario="root"; $banco_passwd=""; $banco_nome="banquinho"; $conexao = new mysqli($banco_hostname,$banco_usuario,$banco_passwd,$banco_nome); In my b...
asked by 31.07.2014 / 07:50
1
answer

MySQL not creating the PHP content line [closed]

When I try to pass the values to my database I do not find them in it, I'm using php with MAMP. Follow the code: <?php error_reporting(E_ALL);ini_set('display_errors', 1); $host = "localhost:8889"; $user = "root"; $pass = "ro...
asked by 25.11.2015 / 02:54