2
I’m developing an application Codeigniter, but I reinstated the Wampserver. In the place where there was a form
now shows this following code.
'id', 'value' => $id, 'size' => '6', 'readonly' => 'true')); ?>
'login', 'value' => $login, 'size' => '15', 'readonly' => 'true')); ?>
'email', 'value' => $email, 'size' => '30', 'readonly' => 'true')); ?>
'senha', 'size' => '30')); ?>
'novasenha', 'size' => '30')); ?>
'novasenha2', 'size' => '30')); ?>
What should I do to solve ?
your initial tag ta so
<?php
, because theshort_open_tag
must taoff
– user6026