Glad we could help you… You site is colorful and eye-catching. Nice! I did not click on much, but, I just played
with the opening page sliding up and down to watch it. Fun… A lot of sites would not work with that type of
“glitter”, but, it works very well for your content. In my humble opinion…
So, Word Press templates that are no longer supported is not really an issue if you learn how to update them for
yourself. Usually, they do require a lot of learning about both the back-end ADMIN panel and the template itself.
But, if you learn the entire system yourself, you do not need support from the author. But, it does take a lot of
studying!
Once you are further along in your PHP studies, you might want to learn PDO. PDO is a better and safer way to
access your database system. Most templates that I have seen do not use this as often as they should. PDO
is a replacement for MySQLi which replaces MySQL… Confusing, right? But, if you want to continue with PHP,
it is one area of study you should look into. (See links below…)
Now, as far as error checking goes, you normally would use a “Try-Catch” system. There is also link to this
below. Basically, using “TRY”, you can have the server test a process and if it does not work correctly, you can
catch the error and handle it in a display. This uses “exceptions” and is fairly easy to learn. And, of course, you
can always post on this site when something does not work well for you. Trapping errors is very important for
websites. I use a hidden DIV that only shows if an error message needs to be displayed. Many ways to do that!
W3Schools is a great learning resource for newbies and can help in finding samples and tutorials for all levels of
programming. Here is a starting point for databases. It shows the current MySQLi and PDO samples starting
with how to create a database and press the green next-chapter to see the next stage. It goes thru most of
all things database…
http://www.w3schools.com/php/php_mysql_create.asp
Error-checking is basically a procedural way to test a function without it “dying” or stopping the page. If there
is an error found in the process, it is caught and you can use the error message as needed or just create your
own version of it. Often, I have a site send an email out to the ADMIN to note that the site encountered an
error that needs to be fixed. In that manner, you can send the data that caused the error so the programmer
can solve it for the next user… Anyway, here is a link explaining it in depth:
http://www.w3schools.com/php/php_exception.asp
Now you have some homework… LOL I will mark this one solved… See you again, Mate, in your next one!
http://www.w3schools.com/php/php_mysql_create.asp