Jump to content

Add serial number


sandy1028

Recommended Posts

Hi,

 

How to add the serial number to txt file as auto increment when the new data is entered.

Is there any any to auto increment the serial number

<?php 

$name=$_POST['name']; 

$data="$name"; 
$fp= fopen("data.txt","a") or die("can't open file"); 
                fwrite($fp, $data); 
                fclose($fp); } 

?> 

Link to comment
https://forums.phpfreaks.com/topic/62788-add-serial-number/
Share on other sites

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.