All great stuff, and I will surely use it in the future. I have updated the code to the way you have it.
<?php
$form_info = "SELECT * FROM form";
require_once('../Connections/MX6_Performance.php');
mysql_select_db("mxperf");
$form_results = mysql_query($form_info, $MX6_Performance) or die(mysql_error());
while ($form = mysql_fetch_assoc($form_results)) {
$fname = $form['fname'];
$lname = $form['lname'];
$address = $form['address'];
$city = $form['city'];
$zip = $form['zip'];
$state = $form['state'];
$phone = $form['zip'];
$email = $form['email'];
$year = $form['year'];
$paid = $form['paid'];
echo "<table width=\"850\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
<tr>
<td>$fname $lname</td>
<td>$address</td>
<td>$city</td>
<td>$state</td>
<td>$zip</td>
<td>$phone</td>
<td>$email</td>
<td>$year</td>
<td>$paid</td>
</tr>
</table>";
}
?>
Now, it's outputting the the initial table with the descriptions of what each field is (I made a table above the query to headline what each column is). But no information is coming out. I'm going to run some tests tomorrow and fix the problem, shouldn't be something major. I appreciate the help all.
BTW the reason I used the form_block way is so that I could have it set to a variable in which I can repeat later on if needed, rather than copy pasting the same coding.
UPDATE: Resolved! Info wasn't coming back becuase I originally made the document in one folder, and then moved it a folder deeper, and the ../ wasn't added on like it should have automatically. Either way, it's a joyous day indeed! 🙂