Need help filling a variable if you don't mind. Has to be easy but every way I work it...it's not working. I have the following code snippet:
<?php $Test1->MoveFirst(); ?>
<?php $Test1->Move($Test1->FirstRecordOnPage() - 1); ?>
<?php while (!$Test1->EOF() && !$Test1->EOB()) { ?>
<tr height="16">
<td width="100" height="16"><font color="#ff9933"><font size="-1" color="#ff9900"><font size="2"><a href='TestMe.php?name=<?php echo $Test1->Value("name")?>'><?php echo $Test1->Value("name")?>
</a></font></font></font></td>
</tr>
<?php $Test1->MoveNext(); ?>
<?php } ?>
I am trying to set a variable to the name value. Thought it was as easy as <?php $uname=$name ?>. My page doesn't like that. Can someone help a guy out?
thx as always.
<?php $Test1->MoveFirst(); ?>
<?php $Test1->Move($Test1->FirstRecordOnPage() - 1); ?>
<?php while (!$Test1->EOF() && !$Test1->EOB()) { ?>
<tr height="16">
<td width="100" height="16"><font color="#ff9933"><font size="-1" color="#ff9900"><font size="2"><a href='TestMe.php?name=<?php echo $Test1->Value("name")?>'><?php echo $Test1->Value("name")?>
</a></font></font></font></td>
</tr>
<?php $Test1->MoveNext(); ?>
<?php } ?>
I am trying to set a variable to the name value. Thought it was as easy as <?php $uname=$name ?>. My page doesn't like that. Can someone help a guy out?
thx as always.