Okay, this one depends on your layout of your system. It looks like you have stored your files in an odd place. Normally, you use the c:\xampp\htdocs\yoursitename to store your website in. You would create a name for the top or root folder that matches your website name. So, if this is for a Super-Store website, you might name the folder superstore. So, then all your files would be saved in the standard htdocs and under that file. So, c:\xampp\htdocs\superstore, which would be a folder you would create and place all of your websties files in it. If you have sub-folders such as “inc” or “includes” for included sub-files, those sub-folders go under or inside the superstore folder.
Now, if you have older code and it contains something you did not right, you can add // to the beginning of the line to comment it out. If it was for school back in 2012, it might be something that your code used and needs. PEAR is an extension of PHP and is used for many reasons.
So, my guess is that you need to use that pear file for displaying data in a table format. I have seen this somewhere a long time ago. So, you need to point your system to include the PEAR as an included PHP file. The command is something like this: include_path = “c\xampp\php\PEAR”;
But, first you need to see if PEAR is under the c\xampp\php\ Folder and if so, add the include_path.
If not, search your xampp folder and find where PEAR is and adjust the include_path to point at it. And, this line would be needed near or at the top of your file that needs the Table.php file… ( Before the include for it! )
I feel like you almost have this done already! Good for you! I am leaving in an hour, but, will check back in on you when I get home tonight. So, pat yourself on the back, Keith!