Hi.
I was wondering whether anyone else could see anything wrong with this code:
<input name="name" type="text" id="name"
value="<?php print @$_SESSION['elements']['name']->getValue();?>" >
When my browser tries to display this page I get the page and form down to
this line where I get this displayed
<input name="name" type="text" id="name" value="
and the rendering stops.
It worked yesterday, then I suddenly got this problem and I don't know why.
It also works on another win2000 pc.
Also, if I change the above code to direct variable access like below, it
works fine :
<input name="name" type="text" id="name"
value="<?php print @$_SESSION['elements']['name']->value;?>">
Personally, I'm mystified.
I was wondering whether anyone else could see anything wrong with this code:
<input name="name" type="text" id="name"
value="<?php print @$_SESSION['elements']['name']->getValue();?>" >
When my browser tries to display this page I get the page and form down to
this line where I get this displayed
<input name="name" type="text" id="name" value="
and the rendering stops.
It worked yesterday, then I suddenly got this problem and I don't know why.
It also works on another win2000 pc.
Also, if I change the above code to direct variable access like below, it
works fine :
<input name="name" type="text" id="name"
value="<?php print @$_SESSION['elements']['name']->value;?>">
Personally, I'm mystified.
Comment