I am having a problem trying to understand a line of code. The code is below:
<input name="startDay" type="text" maxlength="2" size="2" value="<?=$startDay?>">
This code line was part of the code for creating a table and so far, I believe that it basically creates a text field that allows the user to input data and allow us to retrieve the input using the name startday with php code.
The variable $startDay is the variable that will receive the input of the value inputted by the user. However, I do not understand this part of the code and the way it is formatted:
value="<?=$startDay?>"
Can someone explain how it works?