I am using an ifelse statement to echo a string. However, when incorporating a function, I receive a syntax error.
This works >
echo "<p>Remarks: {$row['REM']}</p>"
This does not work >
echo "<p>Remarks: {ucfirst($row['REM'])}</p>"
What am I missing to incorporate the "ucfirst( )" function?