I'm building a grading system and I want "+" and "/"
like this :
for example: c71st="89" c72nd="90" c73rd="89" c74th="70"
<?php echo $userinfo['c71st'] ?> + <?php echo $userinfo['c71st'] ?> + <?php
echo $userinfo['c71st'] ?> + <?php echo $userinfo['c71st'] ?> /2
how can I add and divide this ? when I type + it only display + sign in php form or html
this is different from other questions