what makes this difference from the above example?
<?php $query = "SELECT * FROM Person"; mysql_query($query); ?>
querying using mysql_query function:
<?php mysql_query("SELECT * FROM Person"); ?>
could someone explain me the difference and why use the first sample instead of second sample or vice versa?
Peter