Ver Mensaje Individual
  #1 (permalink)  
Antiguo 21/05/2010, 02:28
NazCarLpa
 
Fecha de Ingreso: marzo-2009
Ubicación: España
Mensajes: 371
Antigüedad: 15 años, 1 mes
Puntos: 5
Error en formulario

Hola a todos, he probado el formulario en mi servidor y me va correcto, pero al subirlo al servidor del cliente me da este problema:

Parse error: parse error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or

El código sería este:

Código PHP:
<?php
class PHPMailer {

  
/////////////////////////////////////////////////
  // PROPERTIES, PUBLIC
  /////////////////////////////////////////////////

  /**
   * Email priority (1 = High, 3 = Normal, 5 = low).
   * @var int
   */
  
public $Priority          3;

  
/**
   * Sets the CharSet of the message.
   * @var string
   */
  
public $CharSet           'iso-8859-1';

  
/**
   * Sets the Content-type of the message.
   * @var string
   */
  
public $ContentType       'text/plain';

  
/**
   * Sets the Encoding of the message. Options for this are "8bit",
   * "7bit", "binary", "base64", and "quoted-printable".
   * @var string
   */
  
public $Encoding          '8bit';

  
/**
   * Holds the most recent mailer error message.
   * @var string
   */
  
public $ErrorInfo         '';

  
/**
   * Sets the From email address for the message.
   * @var string
   */
  
public $From              'root@localhost';

  
/**
   * Sets the From name of the message.
   * @var string
   */
  
public $FromName          'Root User';

  
/**
   * Sets the Sender email (Return-Path) of the message.  If not empty,
   * will be sent via -f to sendmail or as 'MAIL FROM' in smtp mode.
   * @var string
   */
  
public $Sender            '';

  
/**
   * Sets the Subject of the message.
   * @var string
   */
  
public $Subject           '';

  
/**
   * Sets the Body of the message.  This can be either an HTML or text body.
   * If HTML then run IsHTML(true).
   * @var string
   */
  
public $Body              '';

  
/**
   * Sets the text-only body of the message.  This automatically sets the
   * email to multipart/alternative.  This body can be read by mail
   * clients that do not have HTML email capability such as mutt. Clients
   * that can read HTML will view the normal Body.
   * @var string
   */
  
public $AltBody           '';

?>
Este es solo un trozo de la parte donde da el error.

Espero vuestra ayuda. Un saludo.