Search found 3 matches

by lethal
Tue Aug 05, 2003 11:34 pm
Forum: PHP - Code
Topic: mail program broken
Replies: 4
Views: 550

well...

I wrote one my self using the imap_* functions and I've never had this problems, and I also get quite large emails.
by lethal
Thu Jul 17, 2003 1:59 pm
Forum: PHP - Code
Topic: FTP - copy files from one FTP server to another - possible?
Replies: 4
Views: 484

Ahem...

An idea I have about using the FTP functions is, copy the file(s) onto the server that the script is running from into a directory. Then, use the FTP functions again to loop through the directory, and transfer each file to that server. I've never experimented with the FTP functions, but it should wo...
by lethal
Wed Jul 24, 2002 3:16 pm
Forum: PHP - Code
Topic: session security
Replies: 1
Views: 680

session security

<?php /* CREATE TABLE `sessions` ( `id` varchar(32) NOT NULL default '0', `time` timestamp(14) NOT NULL, `data` text NOT NULL ) TYPE=MyISAM; */ $dbhost = "localhost"; $dbuser = ""; $dbpass = ""; $session_db = ""; $session_table = "sessions"; session...