• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

PagSeguro/Paypal Automatic - NICAW ACC

nokia_.

Member
Joined
Sep 16, 2010
Messages
109
Reaction score
5
Hey guys,I already tried to follow 2 tutorials to solve my problem but without sucess. I want an automatic pagseguro/paypal system for my Nicaw site.
Thanks for reading,I hope one of you guys can help me. TFS version 0.2.0.0 Tibia version 8.40
 
@StreamSide
Code:
mysql_query("UPDATE accounts SET premium_points = premium_points + '$NumItens' WHERE name = '".htmlspecialchars($accname)."'");

I do not know what ta checking $accname will add it $accname
 
@StreamSide
Code:
mysql_query("UPDATE accounts SET premium_points = premium_points + '$NumItens' WHERE name = '".htmlspecialchars($accname)."'");

I do not know what ta checking $accname will add it $accname
We developers use various pre-defined functions to test what values variables hold when we are building something, print_r happens to be one of them.
Code:
print_r($variableName);
 
Back
Top