Article 52BAH problem using parentheses in php code?

problem using parentheses in php code?

by
shams
from LinuxQuestions.org on (#52BAH)
I have php code retrieving arabic text from mysql table with it's id in the end of arabic text, i want to put the id inside parentheses, this is the code:
Code:
$stmt = $pdo->prepare("SELECT * FROM quran_text WHERE sura=?");
$stmt->execute([$sura]);
while ($row = $stmt->fetch(PDO::FETCH_ASSOC))
{
echo ($row['text'] . "\r\n" . "&#xFD3E;" . $row['id'] . "&#xFD3F;" . '<br />' . '<br />');

}
?>but this code put the arabic text inside parentheses instead of id, as below:
Code:O(R)UUUUU UUU'OUUO^3UUUU U...UU UUUOU'UUO(C)U UUOUOUO UUUU O(R)UOUUU...U U...UUOUUUU i3/44ithe id=4 should be inside parentheses, any help please?latest?d=yIl2AUoC8zA latest?i=TTCe-n3MxcQ:1Qece1KBvlA:F7zBnMy latest?i=TTCe-n3MxcQ:1Qece1KBvlA:V_sGLiP latest?d=qj6IDK7rITs latest?i=TTCe-n3MxcQ:1Qece1KBvlA:gIN9vFwTTCe-n3MxcQ
External Content
Source RSS or Atom Feed
Feed Location https://feeds.feedburner.com/linuxquestions/latest
Feed Title LinuxQuestions.org
Feed Link https://www.linuxquestions.org/questions/
Reply 0 comments