Re: [PHP] Forms on PHP

2005-01-11 Thread PHPDiscuss - PHP Newsgroups and mailing lists
Leon Poon wrote: > Refer to the following line numbers: > 01 > 02 > // Start of PHP code - Extract values from form. > 03 > /* Other values read */ > 04 > $n=$_POST['n']; > 05 > > 06 > // Pass the data from the form to lightcurve_csharp > 07 > $command="./lightcurve_csharp $a $i $e $lomega $bome

Re: [PHP] Forms on PHP

2005-01-11 Thread Richard Lynch
PHPDiscuss - PHP Newsgroups and mailing lists wrote: > I am new to this or any newsgroup in PHP, as well as PHP itself, so this > question is probably rather elementary. I have a form which on clicking > on the "Submit" button calls up a compiled program on the server that is > executed and writes

Re: [PHP] Forms on PHP

2005-01-11 Thread Leon Poon
Refer to the following line numbers: 01 > // Start of PHP code - Extract values from form. 03 > /* Other values read */ 04 > $n=$_POST['n']; 05 > 06 > // Pass the data from the form to lightcurve_csharp 07 > $command="./lightcurve_csharp $a $i $e $lomega $bomega $lambda $n"; 08 > $result=`$command

[PHP] Forms on PHP

2005-01-10 Thread PHPDiscuss - PHP Newsgroups and mailing lists
Hi, I am new to this or any newsgroup in PHP, as well as PHP itself, so this question is probably rather elementary. I have a form which on clicking on the "Submit" button calls up a compiled program on the server that is executed and writes output to a file. This file is then read by the PHP sc