我无法连接我不太擅长它想知道如何在这种情况下连接
<?php $id = getfield('id'); ?>// this is a function to get fields from sql
<html>
<?php <a class="profile" href="profile.php?='$id' ">
<echo ucfirst ($firstname);</a> ?>//i cant seem to get this part
</html>
这是我到目前为止尝试过的方法,我尝试了其他一些方法,但它们似乎都没有用
答案 0 :(得分:1)
这可能就是你要找的东西:
<?php $id = getfield('id'); ?> // this is a function to get fields from sql
<html>
<a class="profile" href="profile.php?id=<?php echo $id ?>">
<?php echo ucfirst ($firstname) ?>
</a>
</html>
或者,如果你在php中启用了“短标签”,那就更紧凑了:
<?php $id = getfield('id'); ?> // this is a function to get fields from sql
<html>
<a class="profile" href="profile.php?id=<?= $id ?>">
<?= ucfirst ($firstname) ?>
</a>
</html>
最后你可以内联赋值,因为变量只使用一次:
<html>
<a class="profile" href="profile.php?id=<?= getfield('id') ?>">
<?= ucfirst ($firstname) ?>
</a>
</html>
答案 1 :(得分:0)
这应该可以解决问题:
<?php
$id = getfield('id'); // this is a function to get fields from sql
echo '<html>
<a class="profile" href="profile.php?='.$id.' ">'.ucfirst ($firstname).'</a>
</html>';
?>