I have a querry that pulls down some data_base_ values. I want to use php to cancatene these values. I am having trouble getting it done. I tried this:
| Code: : |
<?php
echo $row_Recordset1['firstname_adm'] ." ";
echo $row_Recordset1['lastname_adm']." ";
echo $row_Recordset1['studentidname_adm'] ?>
|
any ideas?