Código PHP:
   Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /home/pionesof/public_html/mailing/inicio/libchart/classes/model/Point.php on line 3 
    y este es el codigo
Código PHP:
   <?php
    class Point {
        private $x;
        private $y;
        /**
         * Creates a new sampling point of coordinates (x, y)
         *
         * @param integer x coordinate (label)
         * @param integer y coordinate (value)
         */
        public function Point($x, $y) {
            $this->x = $x;
            $this->y = $y;
        }
 
        /**
         * Gets the x coordinate (label).
         *
         * @return integer x coordinate (label)
         */
        public function getX() {
            return $this->x;
        }
 
        /**
         * Gets the y coordinate (value).
         *
         * @return integer y coordinate (value)
         */
        public function getY() {
            return $this->y;
        }
    }    
?>    saludos
 
 


