Quote:
Originally Posted by kh99
I think you need to change the string so that the variables are evaluated, like this:
PHP Code:
$order = '<td class="alt2"> <form action="misc.php?do=points_usergift&giftid='.$resultgift[giftid].'&pointgift='.$resultgift[giftpoints].'" method="post"> <input type="hidden" name="s" value="'.$session[sessionhash].'" /> <input type="hidden" name="securitytoken" value="'.$bbuserinfo[securitytoken].'" /> <input type="hidden" name="do" value="points_usergift" /> <input type="submit" class="button" value="submit" /> </form></td>';
(the changes are around $session[sessionhash] and $bbuserinfo[securitytoken]).
Also, is that the entire plugin code? If so, you should really check $_REQUEST['do'], otherwise you will interfere with other functions in misc.php (but maybe you only posted part of the plugin).
|
thanks brother , Do you think is very logical, but unfortunately it did not work.
Do you have other suggestions?
And Do not worry about $_REQUEST['do'] code, I'm quite sure that there's no problem with any another php code . Only problem in form code .:up:
this the outpot :
PHP Code:
<input type="hidden" name="securitytoken" value="">
if it read the value will be working good
-----------------
okay now i think it working good ,
PHP Code:
<input type="hidden" name="securitytoken" value="'.$vbulletin->userinfo[securitytoken].'" />
output :
PHP Code:
<input type="hidden" name="securitytoken" value="1427652798-6a37957adfc30da0463f00be052e3848a2225666">
thanks brother , You provide good help here