We have a custom CMS on the football site. Inside the CMS administration panel is the biography section of the command, as shown below:

In the screenshot above, you will see the “Biography” section. The code for this section in /app.php is:
<ul class="tr">
<li class="td1">Biography</li>
<li class="td2"><input type="text" name="biography" value="<?=$row['biography']; ?>" /></li>
</ul>
I am trying to make the biography window larger, as this paragraph will require a few paragraphs. Currently limited string with one character.
Im also hoping to repeat, making the box bigger on the actual result too. Screenshot:
/index.php contains this code;
<ul class="tr">
<li><?=$row['biography']; ?></li>
</ul>
Any help regarding how I can increase the size of the input and output fields (to accommodate paragraphs rather than a single line) would be greatly appreciated.
source
share