It is easy to add dynamic text and such, but is there a way to let Phakt add more than just the first Row of any Column?
Example:
{Recordset.Field) on some DB would print 'blah' when that Column has 4 rows,
|blah|
|blah2|
|blah3|
|blah4|
I can only get it to use 'blah', lacking the ablitiy to use 'blah2'; 'blah3' or 'blah4' because they follow 'blah'.
Can this be done? Or must I manually write my own MySQl access code?
PS
here is a the code generated by Phakt for use with ADODB:
?php
// Copyright (c) Interakt Online 2001
// http://www.interakt.ro/
require("./adodb/adodb.inc.php");
require("./Connections/Database.php");
?><?php
$TXT=$Database->Execute("SELECT * FROM text") or DIE($Database->ErrorMsg());
$TXT_numRows=0;
$TXT__totalRows=$TXT->RecordCount();
?>
<?php echo $TXT->Fields("text")?>