I have following paypal button in one of the page but at the start, its hidden. lets say page1.php
<div id="over" style="display:none;">
<form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post" target="_top">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="'.$webinar_paypal_link.'">
<input type="hidden" name="custom_name" value="'.$post_id.'">
<input type="hidden" name="notify_url" id="notify_url" value="ipn_get.php?action=ipn">
<input type="image" class="paypalbutton" src="" border="0" name="submit" alt="JOIN OUR SUCCESS TEAM NOW">
<img alt="" border="0" src="https://www.sandbox.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
</div>
And in the admin, i have a interface where admin can choose whether to display button yes or no and information is stored in database. So at that time, when admin choose yes, i want to show paypal button on page1.php (means change style="display:block from style="display:none;") without page refresh.
IS that possible?