|
Programming Problems
|
| Author |
Message |
John1
Junior Member
 
Posts: 3
Group: Registered
Joined: Oct 2008
Status:
Offline
Reputation: 0
Country: 
|
Programming Problems
i have problems in Php Programming when i used loops
can some suggest me easy way to learn
|
|
| 10-31-2008 06:35 PM |
|
 |
searchlight
Junior Member
 
Posts: 10
Group: Registered
Joined: Apr 2009
Status:
Offline
Reputation: 0
Country: 
|
RE: Programming Problems
Learning PHP is not a problem these days
there are a lot of online tutorials available over the internet
so you can opt any one and learn by yourself
|
|
| 04-28-2009 02:11 AM |
|
 |
Paul Louis
Junior Member
 
Posts: 55
Group: Registered
Joined: Apr 2009
Status:
Offline
Reputation: 0
Country: 
|
RE: Programming Problems
PHP is a powerful tool for making dynamic and interactive Web pages. PHP is the widely-used, free, and efficient alternative to competitors such as Microsoft's ASP. In our PHP tutorial you will learn about PHP, and how to execute scripts on your server.
|
|
| 07-18-2009 04:30 PM |
|
 |
Ericka Jenn
Junior Member
 
Posts: 17
Group: Registered
Joined: Jul 2009
Status:
Offline
Reputation: 0
Country: 
|
RE: Programming Problems
In PHP, we have the following looping statements:
while - loops through a block of code while a specified condition is true
do...while - loops through a block of code once, and then repeats the loop as long as a specified condition is true
for - loops through a block of code a specified number of times
foreach - loops through a block of code for each element in an array
|
|
| 08-10-2009 07:56 PM |
|
 |