el codigo es este:
Código PHP:
<?
mysql_connect("localhost","root","");
mysql_select_db("productos");
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
</head>
<body>
<?php
if( function_exists( "mysql_connect" ) ) {
echo "No existe!!";
}
?>
<?
$rows=mysql_query("select * from categos");
echo mysql_error();
?>
<form name="form1" id="form1">
<table border="1">
<tr>
<th>
codigo
</th>
<th>
modelo
</th>
</tr>
<?
while($row=mysql_fetch_array($rows)){
?>
<tr>
<td><? echo $row['id'];?></td>
<td><? echo $row['categorias'];?></td>
</tr>
<?
}
?>
</table>
</form>
</body>
</html>
pero la conexion se incluye desde otro php
Código PHP:
<?php require_once('Connections/conexion_usuarios.php'); ?>
use este codigo para probar la conexión
Código PHP:
<?php
if( function_exists( "mysql_connect" ) ) {
echo "No existe!!";
}
?>
haya y estoy usando el wamp