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

[PHP] writting into a text file

2001-09-21 Thread Nikola Weber
Hi ! I am having a problem that looks like this : 1.I'd like to have some clue on the traffic on my site, but my server doesn't support the mysql or smth like that. Anyway, I'd be happy with a text file, smth like a log file. Is it possible to write into a text file ? 2. Is it possible and is

[PHP] writting into a text file

2001-09-21 Thread Nikola Weber
Hi ! I am having a problem that looks like this : 1.I'd like to have some clue on the traffic on my site, but my server doesn't support the mysql or smth like that. Anyway, I'd be happy with a text file, smth like a log file. Is it possible to write into a text file ? 2. Is it possible and is

[PHP] writting into a text file

2001-09-21 Thread Nikola Weber
Hi ! I am having a problem that looks like this : 1.I'd like to have some clue on the traffic on my site, but my server doesn't support the mysql or smth like that. Anyway, I'd be happy with a text file, smth like a log file. Is it possible to write into a text file ? 2. Is it possible and

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);