Código HTML:
<form method="post" name="form1" action="<?php echo $editFormAction; ?>"> <table align="center"> <tr valign="baseline"> <td nowrap align="right">Categoria:</td> <td><select name="categoria" size="1" id="categoria" title=""> <?php do { ?><option value="<?php echo $row_Jr_categorias['idcategorias']?>"><?php echo $row_Jr_categorias['nombre']?></option> <?php } while ($row_Jr_categorias = mysql_fetch_assoc($Jr_categorias)); $rows = mysql_num_rows($Jr_categorias); if($rows > 0) { mysql_data_seek($Jr_categorias, 0); $row_Jr_categorias = mysql_fetch_assoc($Jr_categorias); } ?> </select> </td> </tr> <tr valign="baseline"> <td nowrap align="right">Entidad:</td> <td><select name="entidad" size="1" id="entidad" title="<?php echo $row_Jr_Entidades['nombre']; ?>"> <?php do { ?><option value="<?php echo $row_Jr_Entidades['identidad']?>"><?php echo $row_Jr_Entidades['nombre']?></option><?php } while ($row_Jr_Entidades = mysql_fetch_assoc($Jr_Entidades)); $rows = mysql_num_rows($Jr_Entidades); if($rows > 0) { mysql_data_seek($Jr_Entidades, 0); $row_Jr_Entidades = mysql_fetch_assoc($Jr_Entidades); } ?> </select> </td> </tr> <tr valign="baseline"> <td nowrap align="right">Nombre:</td> <td><input type="text" name="nombre" value="" size="32"></td> </tr> <tr valign="baseline"> <td nowrap align="right">Descripcion:</td> <td><input type="text" name="descripcion" value="" size="32"></td> </tr> <tr valign="baseline"> <td nowrap align="right">Foto:</td> <td><input type="file" name="foto" value="" size="32"></td> </tr> <tr valign="baseline"> <td nowrap align="right"> </td> <td><input type="submit" value="Insertar registro"></td> </tr> </table> <input type="hidden" name="MM_insert" value="form1"> </form>
o sea algo parecido a lo que haría la función basename('c:\tal carpeta\carpeta\archivo.jpg') en php.
todo esto para que cuando el escript php se encarga de tomar los valores del form ya tome el valor del campo como debe ser.
Salu2 y Gracias de antemano.