SDE,
Can you explain how the following code works, to display a particular record, e.g. Record 3
Code:
$result = mysql_query("select count(*) from my_table");
$number_of_results = mysql_result($result, 0, 0);
* What do the numbers in BOLD do?
Many Thanks, in advance!!!