tengo una duda
si tengo els iguiente codigo
Cita:
Si yo ejecuto este script, me muestra una lista de todos los campos que tengo en mi bd. Mi consulta es, como puedo hacer para q se muestren estos campos en dos columnasif(!isset($_GET['id']))
{
$self = $_SERVER['PHP_SELF'];
$query = "SELECT id, nombre_of FROM oficinas ORDER BY id";
$result = mysql_query($query) or die('Error : ' . mysql_error());
// create the article list
$direccion = '<ol>';
while($row = mysql_fetch_array($result, MYSQL_NUM))
{
list($id, $nombre_of) = $row;
$direccion .= "<li><a href=\"$self?id=$id\">$nombre_of</a></li>\r\n";
}
$direccion.= '</ol>';
{
$self = $_SERVER['PHP_SELF'];
$query = "SELECT id, nombre_of FROM oficinas ORDER BY id";
$result = mysql_query($query) or die('Error : ' . mysql_error());
// create the article list
$direccion = '<ol>';
while($row = mysql_fetch_array($result, MYSQL_NUM))
{
list($id, $nombre_of) = $row;
$direccion .= "<li><a href=\"$self?id=$id\">$nombre_of</a></li>\r\n";
}
$direccion.= '</ol>';
Ojala alguien me ayude
saludos