20/05/2015, 03:03
|
| | Fecha de Ingreso: mayo-2015
Mensajes: 11
Antigüedad: 9 años, 7 meses Puntos: 0 | |
Respuesta: Problemas al hacer un select con mysql
Código PHP:
Ver original<?php $user = 'root'; $password = 'root'; $db = 'contecxtualc'; $host = 'localhost'; $port = 8889; "$host:$port", $user, $password ); $db, $link ); $tema = $_POST['TEMA']; $q = "SELECT * from archivos WHERE tema = '" . $tema . "' ORDER BY id DESC;"; $i = 0; { $arreglo[$i] = array($fa[autor ],$fa[tema ],$fa[link]); $i++; } ?>
|