Re: [PHP] Deprecated features in php 7.1
[email protected] (Ashley Sheridan)
| Newsgroups | php.general |
|---|---|
| Message-ID | <[email protected]> |
On 23 February 2017 15:11:57 GMT+00:00, Release Edl <[email protected]> wrote: >The script bellow is working properly under php 5.6, but not in php >7.1. >What could we do to fix it? > ><?php > >include("_restrito/conexao.php"); > > $conexao = mysql_connect($host,$user,$pass,$db); > > if(!$conexao) > > die("Nao foi possivel conectar no servidor MySQL. Erro: " . >mysql_error()); > > mysql_select_db($db) or die("Nao foi possivel usar o banco de dados. >Erro: " . mysql_error()); > > $pagina = $_GET['pagina']; > > $banco = mysql_select_db("mensagem"); > > $busca = "SELECT * FROM portfolio ORDER BY id DESC"; > > $total_reg = "5"; > if (!$pagina) { > $pc = "1"; >} else { > $pc = $pagina; >} > >$inicio = $pc - 1; >$inicio = $inicio * $total_reg; > >$limite = mysql_query("$busca LIMIT $inicio,$total_reg"); >$todos = mysql_query("$busca"); > >$tr = mysql_num_rows($todos); >$tp = $tr / $total_reg; >while ($dados = mysql_fetch_array($limite)) { > >?> > >Thanks in advance for any help. >Att., >Paulo You shouldn't be using the mysql_* functions, and they've been deprecated for years. I'd recommend using PDO instead. Thanks, Ash