Ver Mensaje Individual
  #6 (permalink)  
Antiguo 15/07/2013, 14:45
Avatar de metacortex
metacortex
Viejo demente
 
Fecha de Ingreso: junio-2004
Ubicación: Caracas - Venezuela
Mensajes: 9.027
Antigüedad: 19 años, 10 meses
Puntos: 832
Respuesta: variables globales dentro de funciones..

Una pregunta: tengo esta función

Código PHP:
Ver original
  1. function guardar() {
  2.     global $post, $datos_editor, $datos_editor_listas;
  3.     ...

¿Debo hacerlo así?

Código PHP:
Ver original
  1. function guardar($post , $datos_editor , $datos_editor_listas) {
  2.     ...