Hello everybody,
I hope you can help me for my problem, Im solving this for days and I dont know how to make this things really work. I have this sample.html and sample.php files then as my html is called then this php will be executed in the end of html file. My main point is to go back to my html file so that I may be able to find out the result of my php manipulation we say an image update but this code below doesnt work and different from Refresh button. When I press refresh button then it exactly refresh my display but this code below is like only going back to previous page and never update the image. If somebody knows how to solve this problem please help me. Thanks, Archer sample.php ------------------------------------------------------ <?php graph(xcor,ycor) { : : } graph($xcor,$ycor); ?> <HTML> <HEAD> <META HTTP-EQUIV = "REFRESH" CONTENT = "3; URL=sample.html#refresh"> <TITLE>Page to Return you to Meta Tags</TITLE> </HEAD> <BODY> This page will send you back to the Meta tags page after 3 seconds. If it doesn't, <A HREF = "sample.html"> click here. </A>. </BODY> </HTML --------------------------------------------------------- sample.html ---------------------------------------------------------- >Submit</title> <body tracingsrc="locator.png" tracingopacity="100"> <p><img src="locator.png" width="480" height="250"></p> <p> </p> <form action="locator.php" method="post"> <p> </p> <p>X coordinate: <input type="text" name="xcor"> </p> <p> Y coordinate: <input type="text" name="ycor"> </p> <input type="image" src="locator.html" name="Submit"> </form> ----------------------------------------------------------