I downloaded PHP home edition last week and have it running at last.
My question is about running PHP on my website. Can I simply embed php in my frontpage pages and have it run there?
I have a script where I run a stock picking contest. I have it on my computer and it works fine. A form asks for 5 stocks picks, then echoes them and add them to a database.
The Insert code goes something like this:
Insert into stkpickr (Yname, Pick1,Pick2, Pick3, Pick4,Pick5) values ('$Yname','$P1','$P2','$P3',$P4',$P5');
Yname is a varchar(25) and all Picks are domain Sym varchar(8);
Can I just use the <?php and ?> tags and run it??
My site has frontpage extensions, php4, and mysql.
RLG