Midnite Posted June 16, 2006 Share Posted June 16, 2006 I am trying to do the following ...1) get the server time from the server ...2) check the server time and based on the hour and minutes have the script edit a .txt file on the server 3) then I would ultimately like to have some sort of PHP or maybe cron job script transfer that .txt file thru FTP ( as thats all the 2nd server has for access ) to another ( 2nd ) server to be used based on the time of day ...If anyone could point me in the right direction I would be MOST greatful ...Thank you in advance:Midnite Quote Link to comment https://forums.phpfreaks.com/topic/12130-php-help-please/ Share on other sites More sharing options...
zq29 Posted June 18, 2006 Share Posted June 18, 2006 You can get the time with the date() function, then edit the text file with fopen(), fwrite() and fclose(). Then you can ftp the file with ftp_connect(), ftp_login(), ftp_put() and ftp_close(). Quote Link to comment https://forums.phpfreaks.com/topic/12130-php-help-please/#findComment-47073 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.