I'm a total newbie when it comes to this so hopefully I can find some answers here.
Looking to sum a generated number by a script with a regular one. Sum of these two numbers will be displayed.
First number value is the one generated by the php script and the second one can be random.
Thank you in advance
go to your php script where showing the total , and if there is a variable for the total like this
$total = // whatever code is here no matter ;
then , after total variable , do
$total = $total+999;