Error code while trying to use private variables in a function

Posted by Cortopasta on Stack Overflow See other posts from Stack Overflow or by Cortopasta
Published on 2010-03-22T21:54:21Z Indexed on 2010/03/22 22:01 UTC
Read the original article Hit count: 308

Filed under:
|
|

I get an error that says

Parse error: syntax error, unexpected T_PRIVATE in E:\PortableApps\xampp\htdocs\SN\AC\ACclass.php on line 6

while trying to run my script. I'm new to classes in PHP and was wondering if someone could point out my error. Here's the code for that part.

<?php
class ac
  {
  public function authentication()
    {
    private $plain_username = $_POST['username'];
    private $md5_password = md5($_POST['password']);

    $ac = new ac();

© Stack Overflow or respective owner

Related posts about php

Related posts about class