Difference between revisions of "C.php"

From Organic Design wiki
m
m
Line 7: Line 7:
  
 
#$gcc = $htdocs.'wiki/gcc';
 
#$gcc = $htdocs.'wiki/gcc';
$article = `/usr/bin/gcc -v`;
+
$article = shell_exec("/usr/bin/gcc -v");
  
  
 
?>
 
?>

Revision as of 03:01, 23 June 2006

<?

  1. C Compiler for XmlWiki Environment
  1. $server = $_SERVER['HTTP_HOST'];
  2. $htdocs = $_SERVER['DOCUMENT_ROOT'];
  3. if ( !ereg( "\\/$", $htdocs ) ) $htdocs .= '/';
  1. $gcc = $htdocs.'wiki/gcc';

$article = shell_exec("/usr/bin/gcc -v");


?>