Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
22% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
4
Posts with Downvotes
1
Downvoting Members
4
0 Endorsements
~224 People Reached
Favorite Forums
Favorite Tags
php x 3
Member Avatar for fouzia Qayyum

hello! i have implemented a signup form in yii framework now i want that after user login user can modify his/her info. help me plz

Member Avatar for halomas
0
33
Member Avatar for fouzia Qayyum

<?php function get_rnd_iv($iv_len) { $iv = ''; while ($iv_len-- > 0) { $iv .= chr(mt_rand() & 0xff); } return $iv; } function md2_encrypt($plain_text, $password, $iv_len = 16) { $plain_text .= "\x13"; echo "<br>".$plain_text; $n = strlen($plain_text); echo "<br>".$n; if ($n % 16) $plain_text .= str_repeat("\0", 16 - ($n % 16)); …

Member Avatar for chrishea
0
86
Member Avatar for fouzia Qayyum
Member Avatar for vaultdweller123
-3
105