I figured out why it wasn't working a few minutes ago, and the solution was very surprising. I was doing some research to try to understand and resolve the problem when I landed on a website that had some simple PHP code. I created a new file in gedit and copied and pasted the code into my new file, and then saved it to my document root folder. Then I tried to run it, and worked instantly! Then I realized the cause of the problem. The code I was using was from a CD that I got from my Apache, MySQL, & PHP book. When I tried to copy those files from the CD on Linux, I couldn't because I never was able to find a device driver for my DVD writer in Linux. So I went and copied the PHP test files in Windows, logged back into Linux, and copied them from my Windows drive to my document root folder (/var/www). The .php test files that weren't working were those aforementioned files from the CD that I had copied to a Windows folder. I can only surmise that that copying process created some non-displayable characters that prevented PHP from working in Linux. I remember that I created the test phpinfo() file new in Linux, and it was the only one that worked because it wasn't originally from the CD. I have created a few more test files by copying and pasting while in Linux, and they worked fine. What a difficult, memorable, and valuable lesson this has been for me, for it has cost me a lot of time and frustration.
I added .jpg and .jpeg files to my AddType declaration because I will be using a .jpg picture in my website, and wanted to be sure that they would display. From your response, that must have been a bad conclusion, but I am new at this. I'm sure I will make a lot of mistakes in the learning process. I'm having trouble getting my picture to display on my test website. All of the other HTML code is working as it should. The code I am using for my picture file is '<img src="/var/www/COH_BookCover.jpg" align=right border=5 width=450 height=570>', and is after a <hr>, and before a <p> (paragraph). I will close this case as resolved when that is working as it should.
Don G