PHP - problema con funcion de otro fichero funcion de otro fichero en php no funciona

 
Vista:

problema con funcion de otro fichero funcion de otro fichero en php no funciona

Publicado por ana (1 intervención) el 02/05/2015 11:26:51
En include tengo la funcion que quiero ver, load item pero no me funciona . Algun consejo?
include ("../included/common.php");


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<FORM NAME="top_form" METHOD="POST" ACTION="php/tframe.php">
	<TABLE COLS="4" style="text-align:center;width:20em;font-size:1.2em;margin-top:10px;margin-bottom:0">
		<TR>
			<TD COLSPAN="4" style="padding:5px 0px">
			<b>Seleccione un item de la lista:</b><br>
			<SELECT ID="item" NAME="item" style="width:100%" ONCHANGE='parent.BOTTOM.location="<?=$base_ref?>bframe.php";document.top_form.submit()'>
				<? load_items(); ?>
			</SELECT>
			</TD>
		</TR>
		<?
		# Código con los botones a mostrar dependiendo del item seleccionado
		load_buttons();
		?>
	</TABLE>
 
	<input type="hidden" id="op" name="op">
</FORM>
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder