Jump to content

php solution to refresh html table display of MySQL data


webguync

Recommended Posts

PHP is a server side language, so it cannot modify anything after the page has been loaded.

 

If you do not want to use javascript, there are probably a few ways:

 

Using a form:

<form action="<?php echo $_SERVER['PHP_SELF']?>" method="post">
    <input type="button">
</form>

 

Using a link and styling it to look like a button:

<a href="<?php echo $_SERVER['PHP_SELF']?>">Refresh</a>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.