[PHP] PHP command for issuing UNIX command???

2001-12-14 Thread Scott Fletcher
Hi! I wanted to know if there is a PHP code or function that would allow the PHP to issue the UNIX command. What I'm doing here is I'm trying to tell PHP to create a file by issuing hte UNIX command then I can use the PHP to open the file to enter the data. Once I'm done with the file,

Re: [PHP] PHP command for issuing UNIX command???

2001-12-14 Thread R'twick Niceorgaw
command for issuing UNIX command??? Hi! I wanted to know if there is a PHP code or function that would allow the PHP to issue the UNIX command. What I'm doing here is I'm trying to tell PHP to create a file by issuing hte UNIX command then I can use the PHP to open the file to enter

Re: [PHP] PHP command for issuing UNIX command???

2001-12-14 Thread Dan McCullough
] To: [EMAIL PROTECTED] Sent: Friday, December 14, 2001 10:54 AM Subject: [PHP] PHP command for issuing UNIX command??? Hi! I wanted to know if there is a PHP code or function that would allow the PHP to issue the UNIX command. What I'm doing here is I'm trying to tell PHP

Re: [PHP] PHP command for issuing UNIX command???

2001-12-14 Thread J.F.Kishor
hello scott, Yes..! you can use system() comand It goes like this system(touch filename.ext); // creates a file and file will be owned by nobody If you want to change the file permission do the following chmod(filepath/filename, 755); decimal; probably