Mysql
 sql >> Datenbank >  >> RDS >> Mysql

PHP MYSQL

Sie verwenden <?php echo ... ?> nicht wenn Sie bereits im PHP-Modus sind und etwas ausgeben. Verketten Sie einfach die Variable.

echo '<center><strong><font color="#3BB9FF">' . ucfirst($row['t_fn']) . '&nbsp;' . ucfirst($row['t_ln']) . '</font></strong></center>';

<?php echo ... ?> wird verwendet, wenn Sie nur HTML direkt ausgeben und etwas PHP einfügen möchten. Zum Beispiel so:

if($row['t_type'] == 1)
{ ?>
<center><strong><font color="#3BB9FF"><a href="view_t_profile.php?t_id=<?php echo $row['t_id']; ?>&t_type=<?php echo $row['t_type']; ?>" class="cls" target="_blank"><br />View Profile</a></font></strong></center>
<center><strong>Main Contact</strong></center>
<center><strong><font color="#3BB9FF"><?php echo ucfirst$row['t_fn']).'&nbsp;'.ucfirst($row['t_ln']); ?></font></strong></center>
<?php
}