Jump to content

PHP, the "at" command and the exec() function.


mikemike27

Recommended Posts

Hi. I'm quite new to the idea of writing PHP on the linux/putty/whatever you want to call it.

 

I've written a script in a .php file that creates a .txt file and puts it on the server.

 

Now I need to write a command in the same .php file that will run that .txt file at a particular time and date. I'm not sure which function to use for that. exec(), system(), something else?

 

Here's what I have so far;

$myFile = /var/www/html/byot/author/job108.txt;
$time = 09:30;
$year = 12;
$month = 06;
$day = 26;
$command = `at $time $day.$month.$year -f $myFile`;

exec(--user=something --password=something, $command);

 

I thought something like this would work, it doesn't. What am I missing? Apart from a brain!

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.