Anyone can help me how to get data from one page to other page?
here code :
<form action="" method="post">
<input type="hidden" name="id" value="<?php echo $id; ?>"/>
<div>
<p><strong>ID:</strong> <?php echo $id; ?></p>
<strong>Nik: </strong><font class="important">*</font><input type="text" name="nik" value="<?php echo $nik; ?>" /><br/><br/>
<strong>Name: </strong><font class="important">*</font><input type="text" name="firstname" value="<?php echo $firstname; ?>" /><br/><br/>
<strong>Alamat: </strong><font class="important">*</font><input type="text" name="alamat" value="<?php echo $alamat; ?>" /><br/><br/>
<strong>Company: </strong><font class="important">*</font><input type="text" name="lastname" value="<?php echo $lastname; ?>" /><br/><br/>
<strong>Department: </strong><font class="important">*</font><input type="text" name="departemen" value="<?php echo $departemen; ?>" /><br/><br/>
<strong>Telephone: </strong><font class="important">*</font><input type="text" name="telephone" value="<?php echo $telephone; ?>" /><br/><br/>
<strong>Mobile: </strong><font class="important">*</font><input type="text" name="mobile" value="<?php echo $mobile; ?>" /><br/><br/>
<strong>Email: </strong><font class="important">*</font><input type="text" name="email" value="<?php echo $email; ?>" /><br/><br/>
<p><font class="important">*</font>required</p>
<input type="submit" name="submit" value="Submit">
</div>
</form>
</body>
</html>