What php and mysql topics would you recommend I cover?

I have not long ago outlayed the little time guidance about OOP in PHP as well as we have the flattering great bargain of it now. What PHP-related topics would we suggest we cover right away as well as could we suggest any great books or alternative sources for guidance them?

One thought on “What php and mysql topics would you recommend I cover?

  1. How to use mysqli prepared statements.
    Most PHP code I see builds up SQL statements by splicing together strings. This is the wrong way to do SQL in any language, from both a security and performance standpoint.

    The right way is to use the mysqli API and prepared statements. You could work that in with OOP by writing an OO wrapper around mysqli, or find an existing one.