Need Guidance

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ammad
    New Member
    • Nov 2006
    • 1

    #1

    Need Guidance

    HI ,

    How r u All............ .im an undergraduate student and need some help in php...is it possilbel to bypass Database Interface using php so tht i can pose queries in the query processor of the database directly.....us ing my own interface.

    thnxz
    best wishes
  • cassbiz
    New Member
    • Oct 2006
    • 202

    #2
    Originally posted by ammad
    HI ,

    How r u All............ .im an undergraduate student and need some help in php...is it possilbel to bypass Database Interface using php so tht i can pose queries in the query processor of the database directly.....us ing my own interface.

    thnxz
    best wishes

    What kind of data do you want to interface with? CSV, TXT?

    Sure you can :)

    Take a look at some of the tutorials here and they can get you started.

    Comment

    • ronverdonk
      Recognized Expert Specialist
      • Jul 2006
      • 4259

      #3
      is it possilbel to bypass Database Interface using php
      I suppose you mean bypassing tools like phpMyAdmin and the likes.

      It is quite easy to write your own interface. All you would need to make is a textarea for input and a routine that reads this input, passes it to the database and return the output to you. That requires submit and results in page reloads.

      If you want to make it nicer, you can use Ajax, where the query is asynchronously submitted (using JavaScript) to the backend PHP MySQL program, that returns the result to your screen, all without page refreshes or submit buttons.

      Ronald :cool:

      Comment

      Working...