Re: [PHP] Deprecated features in php 7.1
[email protected] (Ryan Pallas)
| Newsgroups | php.general |
|---|---|
| Message-ID | <CAObuZdtogH-yZ7cXwuA0G36a0Pte=2LgxPB+gu+zZQ21wsfgCw@mail.gmail.com> |
See http://php.net/manual/en/changelog.mysql.php the extension was removed in 7.0 On Thu, Feb 23, 2017 at 8:11 AM, 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 > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > >