Ver Mensaje Individual
  #5 (permalink)  
Antiguo 08/09/2011, 17:53
Avatar de andresdzphp
andresdzphp
Colaborador
 
Fecha de Ingreso: julio-2011
Ubicación: $this->Colombia;
Mensajes: 2.749
Antigüedad: 12 años, 9 meses
Puntos: 793
Respuesta: Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING

problema de comilla

require_once(/includes/php/funkcje.inc.php');

cambia por

Código PHP:
Ver original
  1. require_once('/includes/php/funkcje.inc.php');

y esta

If($_SERVER[“SERVER_NAME”] != 'localhost'){

por

Código PHP:
Ver original
  1. If($_SERVER["SERVER_NAME"] != 'localhost'){

y esta

register_shutdown_function('_SHUTDOWN);

por esta

Código PHP:
Ver original 
__________________
Si sabemos como leer e interpretar el manual será mucho más fácil aprender PHP. En lugar de confiar en ejemplos o copiar y pegar - PHP