Hi all. I'm just starting to learn php and sql on my own before I go to college for it. I am understanding how to write the sql and php codes easily enough. I understand how to create a database and post queeries to it and have them show up in the queery results. What I am not seeing anywhere in any of the tutorials is how to get the queeries to show up on a page.
example: If I use a simple php page with the opening and closing tags of php on it and insert the following code it should show up on the page in the browser correct?
$sql = "SELECT * FROM memb_info LIMIT 0, 30 ";
I cant get this to show on the page. Am I missing a step somewhere? I've also tried it with calling the database as well using
use database; above that in the tags.


