PHP Classes

Error

Recommend this page to a friend!

      PDO MySQL MVC  >  All threads  >  Error  >  (Un) Subscribe thread alerts  
Subject:Error
Summary:Class 'MySQL' not found
Messages:2
Author:cristina pase
Date:2017-02-01 15:04:55
 

  1. Error   Reply   Report abuse  
Picture of cristina pase cristina pase - 2017-02-01 15:04:55
I've just installed it and this is the error:

Fatal error: Class 'MySQL' not found in Z:\xampp\htdocs\php\ExampleClass.php on line 2

Thanks
Cris.

  2. Re: Error   Reply   Report abuse  
Picture of Ángel Manso Pérez Ángel Manso Pérez - 2017-02-01 19:25:20 - In reply to message 1 from cristina pase
Hi and thanks to post.

Try to do this:

<?php
class ExampleClass extends MySQL {
/*
...

Change it for:

<?php
include("MySQL.php");
class ExampleClass extends MySQL {
/*

And try again. In the new version, I'll make an autoloader.

Please verify if this solution works for you.