Mysql
 sql >> Teknologi Basis Data >  >> RDS >> Mysql

php dan formulir html di halaman yang sama

    <?php 
       @session_start();
       $_session['count']= $_GET['count'];
       $_session['sum']= $_GET['Sum'];
       for ($i=0;$i<$_session['count'];$i++){

          //make necessary changes here as well
         echo unserialize($_GET['serialized_name'])[$i];

         //use session to store your data from previous page
       ?>
     <?php
         //put this code above the form to process the submitted data which was previously sent to update.php

      if(isset($_POST[submit])){
                //Your code
        e.g.
              $name=$_POST['name']
           //whenever you want to access previous data just get it from session variable.
         e.g. $count=$_SESSION['count'];

      }?>

     <html>
            <!--Submit the data of the form to itself instead of update.php -->
       <form method="post" action="<?php echo $PHP_SELF;?>">
           <!--your html code -->
       </form>
     </html>


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Mendapatkan Gambar dari MySQL ke tableWidget di PyQt5

  2. Menggunakan LIMIT dalam GROUP BY untuk mendapatkan N hasil per grup?

  3. permintaan mysql untuk mendapatkan hitungan berdasarkan grup dan jumlah total

  4. kehilangan koneksi ke mysql saat menggunakan mysqldump bahkan dengan parameter max_allowed_packet

  5. LOAD DATA LOCAL INFILE tidak berfungsi dari php 5.5 menggunakan PDO