Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Show student marks with search engine

Status
Not open for further replies.

Si14

Programmer
Apr 4, 2010
1
CA
Dear all:

I have about 20 students. Each has a number and a mark.
I want to design a page with a search box in such a way that when some one enters his/her number in that search box and press "search", the result would be his/her mark.

How can I design this page with front page?

Thank you very much.
Regards
 
Put the students in a database, say access. You just need one table with the student_name, student_id, mark.

Make sure ODBC for Access is on your system. It is if access is installed.

Now use the database wizard in FP to generate the page for you: just follow the instructions.

On the generated code, split it into 2: one for your side and the other for the response.

The query will be something like "SELECT * FROM MARKTABLE WHERE student_id=" & :studentid

That is basically it.

More information on
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top