View Single Post
  #1  
Old 29th March 2016, 00:25
codreanuionut codreanuionut is offline
Senior Member
 
Join Date: Sep 2015
Posts: 15
Default Can't aplly changes to a new profile field.
Hi,


I'm trying to make a new profile field on my.php and i can't find out what im not
doing right... im not the most expert person when it comes to php..

So.

I saw a signature field in mysql, si i changeit, and it acually display's on
the forum, so i figured out to put it into my.php...



i copyed:

PHP Code:
    <fieldset><legend><strong>{$lang['my_info']}</strong></legend>
    <
textarea name='info' cols='50' rows='4'>" . htmlsafechars($CURUSER["info"]) . "</textarea><br />{$lang['my_tags']}</fieldset
and i change it to:

PHP Code:

    
<fieldset><legend><strong>Signature</strong></legend>
    <
textarea name='signature' cols='50' rows='1'>" . htmlsafechars($CURUSER["signature"]) . "</textarea><br />Forum and Comment's signature. (VIP+)</fieldset> 
When i go to my.php it acually works, i can see my actual signature in that
text area, but if i change it, and press submit, after the reload it's unchanged..

I figured out that i must specify somewhere to apply that field.. but i cant find
where info does.. so i don't know where to put it..
Reply With Quote