Been stuck on this for quite a bit... main problem is I'm very much a rookie when it comes to PHP and server side languages.
But when this javascript function is completed:
request.done(function(msg)
{
if (msg.result === 0)
{
alert("The credit card was charged successfully!");
}
I would like this PHP variable, which is in a different file, to change.
<?php if($row['membership_id'] == 0) :?>
Any help would be greatly appreciated.