Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.

HTML Form Data to Table Question?

So I am making a website where you enter information in a form, then, I would like it to post the data the user put in to be displayed in a table where anyone can view it. Is there any way I can do this?

Thank you

3 Answers

Relevance
  • Anonymous
    1 decade ago
    Favorite Answer

    As previously noted, you have to store on your server the data you collect in the form. The most common way to do that is via PHP and MySQL.

    Here are some tutorials on how to use those technologies:

    http://phpeasystep.com/mysql.php

  • 1 decade ago

    This can be done with PHP and MYSQL tables.

    Source(s): Done it myself
  • 5 years ago

    Create table: create table check (id int not nul auto_increment primary key, email varchar(50)) Check whether session contains value or not. <?php if($_SESSION['email']!='') { $email=$_SESSION['email']; } if(isset($_POST['submit'])) { mysql_connect('localhost','root','') or die(mysql_error()); mysql_select_db('db') or die(mysql_error()); $q=mysql_query("insert into check values('','".$email."')") or die(mysql_error()); if($q) { echo'Values are inserted'; } else { echo'Values are not inserted'; } } ?>

Still have questions? Get your answers by asking now.