Forum Moderators: coopster

Message Too Old, No Replies

simple PHP how-to's needed

         

jmaddalone

10:27 pm on Oct 22, 2002 (gmt 0)

10+ Year Member



Hi all - I am new to this board and PHP as well

I am primarily an ASP developer and trying to learn more by providing real world solutions for my clients using PHP.

So here goes.

1. How to run PHP in Windows?(anyone successfully done this?)

2. Simple application:
-----------------------
a. based on a flat file db(no MySQL)
b. has title¦details columns
c. display title as hyperlink
d. upon clicking on the hyperlink view the details for that title
e. the ability to edit this flat file db
-----------------------

I could easily do this in ASP - but wondering if anyone can show me how to do this in PHP - would be an invaluable learning tool for those of us not .

Hope I am not asking for too much as a newbie here - .
Thanks

jatar_k

10:32 pm on Oct 22, 2002 (gmt 0)

WebmasterWorld Administrator 10+ Year Member



Welcome to WebmasterWorld [webmasterworld.com] jmaddalone

That is bunch of questions all at once. We can't really explain how to do all of that but we can point you in the right direction. php.net is the site I use. Here is the link to the basic tutorial.

[php.net...]

They have all of the documentation online, you can search the complete function list etc.

jatar_k

10:37 pm on Oct 22, 2002 (gmt 0)

WebmasterWorld Administrator 10+ Year Member



another good one is the links page from php.net

[php.net...]

links to all kinds of tutorials etc.

andreasfriedrich

10:52 pm on Oct 22, 2002 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Adam pointed you to the right manual. If you know any other programming language you won´t need anything else.

For the flat files have a look at DBM Functions [php.net].

PHP must be compiled with dbm support. Check using phpinfo() (Create an empty file and paste <?php phpinfo();?> into it. Request that file with your browser and look for --with-db in the configuration settings).

Andreas

jmaddalone

10:58 pm on Oct 22, 2002 (gmt 0)

10+ Year Member



Great -
I got PHP running on IIS - on the right track so far - thanks guys

jmaddalone

11:01 pm on Oct 22, 2002 (gmt 0)

10+ Year Member



Okay -

Maybe I was jumping the gun with the whol flat file db - essentially the issue is that I have no MySQL support for a current project and not sure what to do for a simple application without any type of database software....