Ver Mensaje Individual
  #12 (permalink)  
Antiguo 10/11/2007, 12:25
Avatar de Italico76
Italico76
 
Fecha de Ingreso: abril-2007
Mensajes: 3.303
Antigüedad: 17 años, 7 meses
Puntos: 292
Re: Apache : Mod_rewrite

El PHP que genera la URL es:

Código:
<html>

<head>
<title>Generar Paginas</title>
<base href="http://localhost/" />
</head>

<body> 
 
<div align="center">
<form method="get" action="genera-page.php">
<select name="categos"  title="Categorias"  size="45" cols="45">  <!-- no "multiple" -->
Código PHP:
<?php
 
include "betadir.inc"// incluye funcion Pesos($catego)

Function bye_acentos($frase_acentuada){ 
$mal "abcdefghijklmnñopqrstuvwxyzáéíóúü";
$bien "abcdefghijklmnnopqrstuvwxyzaeiouu";
return (
strtr($frase_acentuada,"$mal","$bien"));
}

$sql 'SELECT * FROM `categorias`';
$tabla mysql_query($sql); // selecciono todos los registros de la tabla usuarios, ordenado por nombre

while ($reg mysql_fetch_array($tabla)) { // comienza un bucle que leera todos los registros y ejecutara las ordenes que siguen
$opcion "<option value='".$reg['nombre']."'>".$reg['nombre']."</option>";
echo 
bye_acentos($opcion); // imprimo el TAG


mysql_free_result($tabla); // libera los registros de la tabla
mysql_close($con); // cierra la conexion con la base de datos
?>
Código:
</select>
<br/>
<input type="submit" value="Enviar"/>
</form>

</body>
</html>