is this right??

Any problem with PHP can be disscused here
Post Reply
flexorcist
Posts: 27
Joined: Sun Jul 02, 2006 5:13 am

is this right??

Post by flexorcist »

if you were to make a page where people sign in, is php the language you would need to use to display dynamic information that differs for each person, for example a "stats" page??


Ky
Posts: 181
Joined: Tue Apr 18, 2006 8:36 pm

Post by Ky »

Yes, you would use it to call global instances (variables).
flexorcist
Posts: 27
Joined: Sun Jul 02, 2006 5:13 am

Post by flexorcist »

aaaaaaah, no worries
thanks for that :)
mohumben
Posts: 82
Joined: Thu Sep 15, 2005 9:45 pm

Re: is this right??

Post by mohumben »

flexorcist wrote:if you were to make a page where people sign in, is php the language you would need to use to display dynamic information that differs for each person, for example a "stats" page??
Actually not only PHP works for this, but most (if not all) of the server sided languages (CGI, ASP, Python)

You will need also some sort of database to store information (logins, passwords, etc.)

Code: Select all

define('I_LOVE_PHP', true);
jeremy90
Posts: 440
Joined: Mon Jun 26, 2006 3:15 pm

Re: is this right??

Post by jeremy90 »

mohumben wrote:
flexorcist wrote:if you were to make a page where people sign in, is php the language you would need to use to display dynamic information that differs for each person, for example a "stats" page??
Actually not only PHP works for this, but most (if not all) of the server sided languages (CGI, ASP, Python)

You will need also some sort of database to store information (logins, passwords, etc.)
yes, like a MYSQL databse would be a good think to use
rwshthn
Posts: 500
Joined: Tue Sep 26, 2006 1:39 am
Contact:

yes

Post by rwshthn »

yea you must use dynamic
annamarie
Posts: 66
Joined: Tue Dec 26, 2006 2:18 pm

Post by annamarie »

yup use php/asp/cgi and other language as long it not html :)
Flipper3
Posts: 353
Joined: Tue Feb 28, 2006 12:34 am

Post by Flipper3 »

Well you shouldn't use just PHP, you need HTML as well. ;)
Mizo

Post by Mizo »

Ky wrote:Yes, you would use it to call global instances (variables).
yes i agree with this reply
Post Reply