Forums

Profile page plugin wrong data filled in.

jrmobile 13 Jan, 2013
Hi
Just need another clue on Profile Page plugin.

When i retrieve data from the table, it doesnt return full values or the fields, that holds more than one word.

For example
http://winterstardance.ru/index.php?option=com_chronocontact&chronoformname=Registration_RU_Edit&cf_id=359

You can see the field "Тренер" with first word returned "Цифрова". In the database it is "Цифрова Вероника"

How do i get full values?

Will appreciate any help.
Thanks in advance.
GreyHead 14 Jan, 2013
Hi jrmobile,

I'm not sure what but something odd is happening with quotes. If you look at the form HTML (in FireBug here) you see
<td><input class="cf_inputbox " style="width: 234px;" maxlength="150" size="31" Вероника="" value="Цифрова" name="Teacher"></td>
so both parts have been retrieved but the display is wrong. Looking at the actual HTML in the page source I see
<input name="Teacher"  value=Цифрова Вероника size="31" maxlength="150" style="width: 234px;" class="cf_inputbox "/>
Notice that there are no quotes around the value. This should be
value="Цифрова Вероника"
I suspect that in your Profile Page code you have
value={Teacher}
instead of
value="{Teacher}"


Bob
This topic is locked and no more replies can be posted.