|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-09-14 08:25 UTC] derick@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Dec 08 18:00:01 2025 UTC |
Description: ------------ <?php /* Conexion, seleccion de una base de datos */ $enlace = mysql_connect('localhost', 'lixman', '') or die('No pudo crear una conexión: ' . mysql_error($enlace)); mysql_select_db('test') or die ('No pudo seleccionarse la base de datos'. mysql_error($enlace)); /* Realizar una consulta SQL */ $consulta = 'SELECT * FROM autores'; $resultado = mysql_query($consulta, $enlace) or die('La consulta falló: ' . mysql_error($enlace)); /* Cerrar la conexion */ mysql_close($enlace); ?> Expected result: ---------------- connect to a data base of Mysql created by MySQLAdmin named test Actual result: -------------- Fatal error: Call to undefined function mysql_connect() in D:\Sitios\PHP\inicio.php on line 3