Go Back   CodingForums.com > :: Server side development > PHP

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rating: Thread Rating: 6 votes, 3.67 average.
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 03-17-2010, 05:47 AM   PM User | #16
jaymista
New to the CF scene

 
Join Date: Mar 2009
Location: New Brunswick, Canada
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
jaymista is an unknown quantity at this point
Does it cost anything to install the above program, WAMP?
jaymista is offline   Reply With Quote
Old 03-17-2010, 08:18 AM   PM User | #17
abduraooft
Supreme Master coder!

 
abduraooft's Avatar
 
Join Date: Mar 2007
Location: N/A
Posts: 14,680
Thanks: 158
Thanked 2,182 Times in 2,169 Posts
abduraooft is just really niceabduraooft is just really niceabduraooft is just really niceabduraooft is just really niceabduraooft is just really nice
Quote:
Originally Posted by jaymista View Post
Does it cost anything to install the above program, WAMP?
http://www.google.co.in/search?q=wamp
__________________
Quote:
The Dream is not what you see in sleep; Dream is the thing which doesn't let you sleep. --(Dr. APJ. Abdul Kalam)
abduraooft is offline   Reply With Quote
Old 10-20-2011, 02:02 PM   PM User | #18
hinch
Regular Coder

 
hinch's Avatar
 
Join Date: Sep 2005
Location: UK
Posts: 921
Thanks: 25
Thanked 79 Times in 79 Posts
hinch is on a distinguished road
Quote:
Originally Posted by adumpaul View Post
some basic qusetion in php:
1.What is staic and dynamic webpage?
2.what is css?
3.How do you connect database with php code?
4.What is session ?

1) static is a page made up purely of html and/or css it does not automatically update its self or allow any form of interaction with a data storage or retrieval system eg: a database
Dynamic is basically everything you see on the internet
2) css = cascading style sheets used for defining a layout and design etc of your website you can read more here http://www.w3schools.com/css/
3) like this

PHP Code:
        define("DB_NAME","mydatabase");
    
define("SERVER_NAME","serveraddress");
    
define("USER_NAME","myusername");
    
define("PASSWORD","mypassword");
$conn mysql_connect(SERVER_NAMEUSER_NAMEPASSWORD) or die("Could not connect: " mysql_error());
mysql_select_db(DB_NAME$conn); 
4) a session is something you create in in your web page that can store data for you to use. so if you want to store something and use it later you can store it in a session. most commonly used in login systems where people will store a "logged in" variable to identify users who are logged in or not.
__________________
A programmer is just a tool which converts caffeine into code

My work: http://www.fcsoftware.co.uk && http://www.firstcontactcrm.com
My hobby: http://www.angel-computers.co.uk
My life: http://www.furious-angels.com
hinch is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 03:12 PM.


Advertisement
Log in to turn off these ads.