There is an url www.example.com/page-1.php
. This page has a function called make_circle
. Used like this: make_circle('10');
When I visit www.example.com/page-2.php
, I want it to run make_circle('10');
on www.example.com/page-1.php
. Is this possible?
On www.example.com/page-2.php
:
<iframe id="coolpage" src="www.example.com/page-1.php" style="width:100px;height:100px;border:0; border:none;"></iframe>
<!-- How do I run the make_circle function on page-1 while I am on page-2 -->