Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~2K People Reached
Favorite Tags
c++ x 10
php x 2
Member Avatar for jdam7459

Is there any way for me to get a .php file to open in a web browser without a server?

Member Avatar for Arcrammer
0
1K
Member Avatar for jdam7459

I'm having trouble getting my dynamic 2d array to work consistantly in my program. Here's the code: [CODE] #include <iostream> #include <string> #include "DisjSet.h" using namespace std; struct cell { bool nWall; bool sWall; bool wWall; bool eWall; }; void CreateMaze(cell** &maze, int x, int y); void LoadMaze(cell** &maze, int …

Member Avatar for dkalita
0
117
Member Avatar for jdam7459

This works in Visual C++, but not with the Sun Compiler. [CODE] Stack<Tree<int>> stack; // (Line 40) [/CODE] line 40: Error: "," expected instead of ">>". line 40: Error: Illegal value for template paramter. line 40: Error: "," expected instead of ";". line 40: Error: Illegal value for template paramter. …

Member Avatar for Tom Gunn
0
82
Member Avatar for jdam7459

I am having problems with traversing a parce tree. I need to do an in order traversal recursively. Here's the class's private section... [CODE] template <class data> class BinaryTree { private: struct tNode { data info; tNode *left; tNode *right; }; tNode *root; public: }; [/CODE] I'll be calling inOrderTraversal() …

Member Avatar for jdam7459
0
98
Member Avatar for jdam7459

I am having trouble getting Windows to open the file "results1.txt" in the directory "Result Sets". When I run it I get the error: "results1.txt" is not a recognized as an internal or external command, operable program or batch file. But when I check to see if the file is …

Member Avatar for marco93
0
127