Hi guys, i am new to this forum, and new to PHP, but have many other languages under my belt. A client i have asked for PHP so here i am.
I just got out of doing a large ASP project, so my mind is sort of in ASP mode, but it looks like PHP is very similar to ASP.
enough background here is my question: ( i already searched too, but couldnt find the answers i need)
I created "form.htm" it contains 3 input boxes, submit/reset buttons, includes etc.
what i need to do (and ask if it is possible) is to check the information they entered against not a database, but rather a flat txt file that will be provided. the file is tab seperated.
I know with asp you can pass things this way:
myname=request.form("txtLoginUserID")
mypassword=request.form("txtLoginPassword")
or
ID = Request.QueryString("recordID")
but i cant seem to find anthing like this for PHP. There must be something similar to this.
i am not planning on using MySQL to create a temp table and query it, but that might be an optional route if searching the text file (three colums and 76,000 lines takes too long.
i have tried searching the net, forums and code snippets to find answers but the answers seem harder to find than i anticipated. if you guys have any really good site to recommend that would be great! i use PScode.com, php.net, this site, and w3schools.com for links.
many thanks.