Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Update PHP Automatically?

  • This topic is empty.
Viewing 1 post (of 1 total)
  • Author
    Posts
  • #36834
    schart
    Participant

    I want to automatically update my PHP “wall” (like Facebook).
    Here is a a basic version of how my script works:



    $query = mysql_query("SELECT * FROM wall");
    while ($row = mysql_fetch_assoc($query)){
    $post = $row;
    $name = $row;
    ?>






    }
    ?>





    Any ideas how I can automatically get new information from my database and update the HTML table. Transitions are not necessary but would be cool. If you could explain and give me a example code, that would truly be awesome :)

    – Thanks!

Viewing 1 post (of 1 total)
  • The forum ‘Back End’ is closed to new topics and replies.