Hello
I am configuring a pre-made script from php-login-script.com, and so far, so good, except...
A php script opens and closes <?php ... ?>, then inserts plain html without using "echo" or "print".
Then it calls php values within an html form like this:
<textarea name="address" cols="40" rows="4" class="required" id="address"><? echo $row_settings['address']; ?></textarea>
In a browser, the form field displays <? echo $row_settings['address']; ?>, rather than the intended value.
Is there something in php.ini that can be set to display this value as intended? Or am I missing something else?
Thanks
Mike
I am configuring a pre-made script from php-login-script.com, and so far, so good, except...
A php script opens and closes <?php ... ?>, then inserts plain html without using "echo" or "print".
Then it calls php values within an html form like this:
<textarea name="address" cols="40" rows="4" class="required" id="address"><? echo $row_settings['address']; ?></textarea>
In a browser, the form field displays <? echo $row_settings['address']; ?>, rather than the intended value.
Is there something in php.ini that can be set to display this value as intended? Or am I missing something else?
Thanks
Mike