Código PHP:
-- Estructura de tabla para la tabla `equipos`
--
CREATE TABLE `equipos` (
`id` int(20) NOT NULL auto_increment,
`categoria` varchar(50) NOT NULL,
`equipo` varchar(100) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=32 ;
--
Como puedo hacer para que en este php:
Código PHP:
<?PHP
require_once('config.php');
$link = mysql_connect(DB_HOST, DB_USER, DB_PASSWORD);
$db = mysql_select_db(DB_DATABASE);
$result= mysql_query("select * from equipos") or die('Error: '.mysql_error());
?>
<style type="text/css">
<!--
.Estilo2 {font-weight: bold}
-->
</style>
<table width="60%" border="0" align="center" cellpadding="2" cellspacing="0" bgcolor="#EBEBEB">
<tr bgcolor="#9097A9">
<td width="451"><div align="center">
<div align="center"><strong>Equipo</strong></div></td>
<td width="11"> </td>
<td width="114"><div align="center">
<div align="center"><strong>Eliminar</strong></div></td>
<td width="10"> </td>
<td width="41" bordercolor="#CCCCCC"><div align="center">
<div align="center" class="Estilo2"><strong>Editar</strong></div>
<div align="center" class="Estilo2"></div></td>
</tr>
<?php
while ($row = mysql_fetch_array($result)){
echo"<tr>";
echo"<td width='410'><div align='center'><span class='Estilo6'>" .$row['equipo']. "</span></div></td>" ;
echo"<td width='6'><div align='center'><span class='Estilo6'></span></div></td>" ;
echo"<td width='73'><div align='center'><span class='Estilo6'><a href='eliminar_equipo.php?id=" .$row['id']. "'><img src='img/noactivo.gif' alt='Editar' /></a></span></div></td>";
echo"<td width='5'><div align='center'><span class='Estilo6'></span></div></td>" ;
echo"<td width='73'><div align='center'><span class='Estilo6'><a href='editar_equipo.php?id=" .$row['id']. "'><img src='img/edit-icon.gif' alt='Editar' /></a></span></div></td>";
echo" </tr>";
echo"<td><img src='img/linea.jpg' /></td>";
}
?>
</table>