Repeating Tables not working Either
I've even tried to setup a page using Repeating Tables following the instructions from this Web Assist tutorial (link below)
Web development tutorial - Repeating Tables server behavior
http://www.webassist.com/community/tutorials/view_tutorial.php?tid=24&accesscheck=/community/tutorials/view_tutorial.php?tid=24
Toward the bottom of this tutorial once you have completed the steps for the Applied Repeating Tables sections it references the existence of a single table cell containing the text "Your Repeated Content" (see attached image) .....In the following section Add Content to be Repeated - it outlines a set of instructions for replacing [Your Repeated Content], but my page has no such content.
So something must be globally wrong with how the Data Bridge products were installed.
Any suggestions would be greatly appreciated.
This thread references my problem too....where the page created is Blank in the Design view.
http://www.webassist.com/forums/posts.php?id=27835
From reviewing the code that was generated....it looks like the binding code for my binding was automatically inserted for me....in place of [Your Repeated Content]...but it doesn't appear to work. hmmmm
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
if (PHP_VERSION < 6) {
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
}
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
$maxRows_Recordset1 = 10;
$pageNum_Recordset1 = 0;
if (isset($_GET['pageNum_Recordset1'])) {
$pageNum_Recordset1 = $_GET['pageNum_Recordset1'];
}
$startRow_Recordset1 = $pageNum_Recordset1 * $maxRows_Recordset1;
mysql_select_db($database_TestConnection, $TestConnection);
$query_Recordset1 = "SELECT listing.firstname, listing.lastname FROM listing";
$query_limit_Recordset1 = sprintf("%s LIMIT %d, %d", $query_Recordset1, $startRow_Recordset1, $maxRows_Recordset1);
$Recordset1 = mysql_query($query_limit_Recordset1, $TestConnection) or die(mysql_error());
$row_Recordset1 = mysql_fetch_assoc($Recordset1);
if (isset($_GET['totalRows_Recordset1'])) {
$totalRows_Recordset1 = $_GET['totalRows_Recordset1'];
} else {
$all_Recordset1 = mysql_query($query_Recordset1);
$totalRows_Recordset1 = mysql_num_rows($all_Recordset1);
}
$totalPages_Recordset1 = ceil($totalRows_Recordset1/$maxRows_Recordset1)-1;
?>