954,587 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

executing c++ code from php

hi, i'm trying to execute some c++ code from the php script in my webpage, but its not working. the best i could find was the php code below.

$output = shell_exec('ls -lart program.exe');
echo "<pre>$output</pre>";


here is the code of program.exe (codewarrior created program.exe from this code)

using namespace std;
int main()
{
    return 7;
}


when i run this the screen just says some data, like date and my host server and the program, but does not exectute the program.

i was trying to get it such that when i run the page this php script is on it says 7. thanks.

jethroalias97
Newbie Poster
2 posts since Dec 2006
Reputation Points: 10
Solved Threads: 0
 

Are you sure your permissions allow remote execution? It's generally a Bad Idea (tm).

Puckdropper
Posting Pro
500 posts since Jul 2004
Reputation Points: 23
Solved Threads: 23
 

no, i suppose i don't have permision, do you know if there is anyway to execute java code from a javascript or some other scripting language, i've been searching all over the interenet, but nothing seems to allow me to call java functions from the site's code.

Is this even possible?

jethroalias97
Newbie Poster
2 posts since Dec 2006
Reputation Points: 10
Solved Threads: 0
 

Your PHP code would simply output the HTML code necessary to load the Java Applet.

Puckdropper
Posting Pro
500 posts since Jul 2004
Reputation Points: 23
Solved Threads: 23
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You