I think I know, but if I use a PHP script to pull data from a MySQL table and render an HTML table, the "content" is hidden until the page is rendered, correct? I'm planning on putting private data online (name/dob/address), but having it only accessed when a person enters a password protected page. The data is "safe" from prying eyes as long as the page hasn't been rendered (not logged in). I realize the issue of being on open networks and looking at the data, but otherwise, a table that populated from a PHP script is otherwise "hidden", correct? It's better than having raw data in a table as part of the code, right?
Thanks
