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 = shell_exec("$gcc -v"); | + | $article = "Executing $gcc:\n"; |
+ | $article .= shell_exec("$gcc -v"); | ||
?> | ?> |
Revision as of 05:31, 23 June 2006
<?
- C Compiler for XmlWiki Environment
$server = $_SERVER['HTTP_HOST']; $htdocs = $_SERVER['DOCUMENT_ROOT']; if ( !ereg( "\\/$", $htdocs ) ) $htdocs .= '/';
$gcc = $htdocs.'wiki/gcc'; $article = "Executing $gcc:\n"; $article .= shell_exec("$gcc -v");
?>