在 table 中将 mysql 行添加到 href 的末尾
Adding mysql row to end of href in a table
我想在 table
中 href 末尾的 mysql 行中添加一个单元格的内容
无需将行添加到 href 的末尾即可工作。它是一个 while 循环,所以我将整个循环包裹在 php 括号
中
echo "<td><a href=\"https://website/call?\">" . $row['TXID'] . "</a></td>";
但是当我尝试添加 "TXID" 时出现错误并且页面无法加载。我在这里尝试了一些解决方案,这些解决方案使我转义了 href 的 \" 但我不确定为什么它不起作用。
echo "<td><a href=\"https://website/call?' . $row['TXID'] . '\">" . $row['TXID'] . "</a></td>";
是我的语法错误还是我遗漏了什么?
如果这是重复的,我深表歉意。我找不到任何适合我的确切情况。
请试试这个。
echo "<td><a href=\"https://website/call?".$row['TXID']."\">" . $row['TXID'] . "</a></td>";
你有语法错误试试这个
echo "<td><a href='https://website/call?{$row['TXID']} '>" . $row['TXID'] . "</a></td>";
echo '<td><a href="https://website/call?"'.$row['TXID'].'">' . $row['TXID'] . '</a></td>';
这会很好用。
使用某种IDE,以便在typing.I时消除所有语法错误和拼写错误使用netbeans ide 8.It 非常适合开发php 应用程序。
我想在 table
中 href 末尾的 mysql 行中添加一个单元格的内容无需将行添加到 href 的末尾即可工作。它是一个 while 循环,所以我将整个循环包裹在 php 括号
中echo "<td><a href=\"https://website/call?\">" . $row['TXID'] . "</a></td>";
但是当我尝试添加 "TXID" 时出现错误并且页面无法加载。我在这里尝试了一些解决方案,这些解决方案使我转义了 href 的 \" 但我不确定为什么它不起作用。
echo "<td><a href=\"https://website/call?' . $row['TXID'] . '\">" . $row['TXID'] . "</a></td>";
是我的语法错误还是我遗漏了什么?
如果这是重复的,我深表歉意。我找不到任何适合我的确切情况。
请试试这个。
echo "<td><a href=\"https://website/call?".$row['TXID']."\">" . $row['TXID'] . "</a></td>";
你有语法错误试试这个
echo "<td><a href='https://website/call?{$row['TXID']} '>" . $row['TXID'] . "</a></td>";
echo '<td><a href="https://website/call?"'.$row['TXID'].'">' . $row['TXID'] . '</a></td>';
这会很好用。 使用某种IDE,以便在typing.I时消除所有语法错误和拼写错误使用netbeans ide 8.It 非常适合开发php 应用程序。