PDA

Click to See Complete Forum and Search --> : help the beginners


popskie
Aug 17th, 2005, 01:01 AM
hi,
I C# and vb6 programmer for almost 3 years but totally beginners in PHP. I want to ask some advice or basic tutorial or links.

I have ff. question
1. I want to retreive data from my sql with filter statement and put into label.
2. How to execute button event.

thanks.................

Popskie

oceanebelle
Aug 18th, 2005, 12:31 AM
have you read the php documentation? the one where there's an index for functions..

eg. all functions for the manipulation of mysql (like retrieving data , connecting to it) has the prefix mysql, and the explanation is straightforward so I don'T think it is much of a problem :)

then as for button event, won't javascript do that?

BIOSTALL
Aug 18th, 2005, 04:32 AM
if you want to put your query result in a label.... use mysql_fetch_row or something and assign it to a variable... then echo the variable.

BIOSTALL