rashmi_k28 Posted October 6, 2008 Share Posted October 6, 2008 Hi, I have the php pages where all the functions is writen in page called func.php The functions are called in another page which the values are returned in arrays. Now I have to make all the pages ajax enabled. How can I do it. include("./func.php"); $name = Names(1); array_shift($name); $timeval = $name[0]; <HTML> <HEAD> </HEAD> <BODY leftMargin=0 topMargin=0> echo "<div style=\"position:absolute; left: 500px; width:365px; top: 230px\" align=center><font size=1 color=#a41325 face=Arial>The last time is on $timeval</font></div>"; </body> </html> The mysql is used to store the records. To print the last time i have to fetch the data from database. Untill I hit the refresh key the page is not refreshed. so using ajax how to refresh the entire page without hitting the refresh button or F5 key. Please help me as I am finding too difficult Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.