Jump to content

momoh

Members
  • Posts

    4
  • Joined

  • Last visited

Posts posted by momoh

  1. yes i do thanks for the quick response, i was able to solve that now but i can seem to connect to sqlite

     

    my app is url /home/momoh/public_html/app

     this is what i tried

    import sys
    import sqlite3
    from flask import Flask,url_for,render_template,redirect,request,jsonify,flash,session,get_flashed_messages,make_response
    app = Flask(__name__)
    application = app
     

     

    #Index page

    @app.route("/",methods=["POST","GET"])

    def index():

     

    conn=sqlite3.connect("fmuzic.db")

    c=conn.cursor()

    data=c.execute("select rowid,* from music")

    return render_template("index.html",data=data)
     

    if __name__ == "__main__":
      app.run()
×
×
  • Create New...