I'm trying to write a little PHP script to retrieve and parse my emails. I did some research and found a tutorial on using a pop3 class (pop3.class.php.inc) that I downloaded from PHPClasses website.
The tutorial starts with this:
<?php
require_once("POP3.class.php5.inc");
$pop3 = new POP3();
$pop3->connect('mail.mywebsite.com');
?>
Trying to run that code and I get:
Fatal error: Call-time pass-by-reference has been removed in C:\xampp\htdocs\project\pop3.class.php5.inc on line 240
I'm fairly new to PHP and I don't understand that error. I would like some help to understand what it means and if there's anything I can do to fix it.