RE: [PHP] writting into a text file

2001-09-22 Thread Nikola Veber
Hi ! I was wondering if it is possible to replace standard radio and submit buttons with images. In case of radio buttons that should look like swap image(the image that presents the selected item is swaped) for the selected item, and smth like link image for submit buttons... I think that

RE: [PHP] writting into a text file

2001-09-22 Thread Urb LeJeune
for submit buttons... I think that escaping from standard form look and feel can improve the site layout ... Respectively disagree. That's like saying let put the ignition on the arm rest to improve the layout. Much research has been done and users almost universally like things that

RE: [PHP] writting into a text file

2001-09-21 Thread Daniel Alsen
?php $COUNT_FILE = div/count_data.txt; if (file_exists($COUNT_FILE)) { // En: Open, read, increment, save and close file. $fp = fopen($COUNT_FILE, r+); flock($fp, 1); $count = fgets($fp, 4096); $count += 1; fseek($fp,0); fputs($fp, $count);