CODE:
<td class="tab_down"><b>$lang[From]</b><BR><span class="moder">$lang[From_desc]</span></td>
<td class="tab_down"><input class="tab" type=text style="width: 200px" name="location" size=25 maxlength="100"></td>
</tr>
<td class="tab_down"><input class="tab" type=text style="width: 200px" name="location" size=25 maxlength="100"></td>
</tr>
вставляем:
CODE:
<tr class="normal">
<td class="tab_down"><b>Ваш мобильный</b><BR><span class="moder">Если хотите можете указать номер своего телефона</span></td>
<td class="tab_down"><input class="tab" type=text style="width: 200px" name="mobile" size=25 maxlength="100"></td>
</tr>
<td class="tab_down"><b>Ваш мобильный</b><BR><span class="moder">Если хотите можете указать номер своего телефона</span></td>
<td class="tab_down"><input class="tab" type=text style="width: 200px" name="mobile" size=25 maxlength="100"></td>
</tr>
Затем в файле profile.tpl ищим код
CODE:
<tr class="normal">
<td class="tab_down"><b>$lang[From]</b><BR><span class="moder">$lang[From_desc]</span></td>
<td class="tab_down"><input class="tab" type=text style="width: 200px" name="newlocation" size=25 maxlength="100" value="$location"></td>
</tr>
<td class="tab_down"><b>$lang[From]</b><BR><span class="moder">$lang[From_desc]</span></td>
<td class="tab_down"><input class="tab" type=text style="width: 200px" name="newlocation" size=25 maxlength="100" value="$location"></td>
</tr>
и добавляем
CODE:
<tr class="normal">
<td class="tab_down"><b>Ваш мобильный</b><BR><span class="moder">Укажите номер телефона</span></td>
<td class="tab_down"><input class="tab" type=text style="width: 200px" name="newmobile" size=25 maxlength="100" value="$mobile"></td>
</tr>
<td class="tab_down"><b>Ваш мобильный</b><BR><span class="moder">Укажите номер телефона</span></td>
<td class="tab_down"><input class="tab" type=text style="width: 200px" name="newmobile" size=25 maxlength="100" value="$mobile"></td>
</tr>
Файл profile_show.tpl
CODE:
<td class="dats" valign=middle><b>$lang[From]:</b></td>
<td class="dats" valign=middle>$location</td>
</tr>
<td class="dats" valign=middle>$location</td>
</tr>
дописываем
CODE:
<tr>
<td class="dats" valign=middle><b>Мобильный телефон</b></td>
<td class="dats" valign=middle>$mobile</td>
</tr>
<td class="dats" valign=middle><b>Мобильный телефон</b></td>
<td class="dats" valign=middle>$mobile</td>
</tr>
В файле register.php после строки:
CODE:
$location = $vars['location'];
пишем
CODE:
$mobile = $vars['mobile'];
а после
CODE:
$user['location'] = $location;
пишем
CODE:
$user['mobile'] = $mobile;
Теперь изменения для файла profile.php
после
CODE:
$location = $inuser['location'];
вставляем
CODE:
$mobile = $inuser['mobile'];
после
CODE:
$location = $inuser['location'];
добавляем
CODE:
$mobile = $inuser['mobile'];
после
CODE:
$mobile = $inuser['mobile'];
пишем
CODE:
$newmobile = $vars['newmobile'];
после
CODE:
$newlocation = (!empty($newlocation)) ? trim(strip_tags($newlocation)) : '';
записываем
CODE:
$newmobile = (!empty($newmobile)) ? trim(strip_tags($newmobile)) : '';
и наконец после
CODE:
$inuser['location'] = $newlocation;
добавляем
CODE:
$inuser['mobile'] = $newmobile;
И все. Теперь в профиле пользователя под строкой "откуда" будет строка "Мобильный телефон"