May 15th, 2009, 11:15 AM
I have been using past versions of FT to display dynamic data from FT without any problems for over a year. Are there any new procedures that are required with the new software? I use Dreamweaver for my data connections and have placed very basic code to retrieve and display data to no avail. What is new for me is the use of Code Submissions and FT2.
<?php
mysql_select_db($database_auction, $auction);
$query_Recordset1 = "SELECT * FROM ft_form_1 ORDER BY submission_date DESC";
$Recordset1 = mysql_query($query_Recordset1, $auction) or die(mysql_error());
$row_Recordset1 = mysql_fetch_assoc($Recordset1);
$totalRows_Recordset1 = mysql_num_rows($Recordset1);
?>
<?php echo $row_Recordset1['f_name']; ?> has bid <?php echo $row_Recordset1['bid']; ?> for seats 1&2
<?php
mysql_free_result($Recordset1);
?>
<?php
mysql_select_db($database_auction, $auction);
$query_Recordset1 = "SELECT * FROM ft_form_1 ORDER BY submission_date DESC";
$Recordset1 = mysql_query($query_Recordset1, $auction) or die(mysql_error());
$row_Recordset1 = mysql_fetch_assoc($Recordset1);
$totalRows_Recordset1 = mysql_num_rows($Recordset1);
?>
<?php echo $row_Recordset1['f_name']; ?> has bid <?php echo $row_Recordset1['bid']; ?> for seats 1&2
<?php
mysql_free_result($Recordset1);
?>