I have a class Stack with a header file Stack.h which uses up another class with a header file Activity.h
I have a third class ActivityManager which uses up both the Stack and the Activity class.If I run the program and add in both Activity.h and Stack.h to the #include list I get a...
Hi.I am trying to set up Xmapp so I can run php code.
I have installed Xmapp on my computer.
From the config file I have changed up the listening port to 8090.Now I try to load up this file:
which is inside the ..../xmapp/htdocs/projects directory but when I try to run it prints out...
I have this code:
#include <string.h>
void splitString(string query,char delimeter)
{
int i,j=0;
int end = query.size();
while(i<end)
{
j = query.find(delimeter,i);
cout << query.substr(i,j)...
I have this function in Flask:
@app.route('/<usrname>?<app>',methods=['POST','GET'])
def mainW(usrname:str,app:str):
if request.method=='POST':
action = request.form.get('action')
if action == 'email':
return...
Well I figured it out.Flask can only read up 1 input field from each html website.So the solution is to add 2 html webpages one for user and 1 for password.
Hello .I am currently working on a project to build up something like Facebook and Twitter altho it will be different a lot.Anyone interested in teaming up with me to close out the project , reply to this Thread.
I am using Python Flask.Thank you!