FreeLance Gossip
Quick Search
Flash components, video loops, website templates, showcase, fonts and more
Blogs, Reviews & links
My Little Site Buddy
Computerized Spirit
Free Online Arcade
Video Search Engine
Fast Cash
Word Directory
Design, Development and Internet Marketing
Bad Credit Loans
Free WordPress Themes
The C Network
The fastest-growing network on the web
SEO
Cheap Web Hosting
VIP slots
All slots
Internet cash loans
Printer Leasing
Performance Management Software
Web programmers
Tech FanaTic Blog
Amanda's Layouts
A Dog's Life
Free Webmaster Resources
Wallpaper Site
Sexy Desktop

Threads: 1,155
Posts: 4,995
Members: 661
Welcome to our newest member, JaneiczPeaileruy
Outsource Projects
Freelance Programmer
You Tube
YouTube videos
Pinay Freelancer
Affordable SEO Services
Live Football Video
Business Application Development
Hire A Designer
Mobile Phone Deals
Submit URLs Now
Guitar and Music Forum
printer ink
HP toner cartridges



 
 

Webmaster Forum - Web Design and Development - SEO - Freelance > FreelanceGossip Website Development > Other Coding Forum

IMPORTANT ANNOUNCEMENTS
FORUM IS BEING UPDATED, PLEASE REPORT ANY ERRORS OR ISSUES BELOW. WE THANK YOU -REGARDS, FG STAFF
CLICK HERE TO REPORT AN ERROR
NEWS: NEW CONTEST, CHECK IT OUT HERE!

Our Main Sponsor - FreelancerStore.com
Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 05-30-2007, 10:50 AM
Flubb10 Flubb10 is offline
On a mission
 
Join Date: May 2007
Location: Bay Area
Posts: 42
Flubb10 is on a distinguished road
Default Php

So I've noticed that there are a lot of pages that end in php. What exactly is php and how do I use it. What are the advantages of using this instead of another language? And where do I learn more about this?
Reply With Quote
  #2 (permalink)  
Old 06-15-2007, 11:12 PM
TonyB's Avatar
TonyB TonyB is offline
FG know it all
 
Join Date: Mar 2007
Posts: 131
TonyB is on a distinguished road
Default

more and more people are coding in php instead of other codes. it's a lot cleaner code than others out there which helps rankings for the search engines.
Reply With Quote
  #3 (permalink)  
Old 10-10-2007, 12:18 PM
dansgalaxy dansgalaxy is offline
Newbie
 
Join Date: Oct 2007
Location: Swindon, UK
Posts: 23
dansgalaxy is on a distinguished road
Send a message via MSN to dansgalaxy Send a message via Yahoo to dansgalaxy
Default

PHP which means Php - Hypertext - Preprocessor

is a server side language and can actually THINK do calculations and a hell of alot more.
__________________
Honest, Personal UK Webhosting
Get 25% of ANY shared package for life ~ Promo: freelancegossip
.::XDnet.co.uk::.
Reply With Quote
  #4 (permalink)  
Old 01-20-2008, 03:41 PM
TonyB's Avatar
TonyB TonyB is offline
FG know it all
 
Join Date: Mar 2007
Posts: 131
TonyB is on a distinguished road
Default

really, i didn't know it went off calcualtions.
Reply With Quote
  #5 (permalink)  
Old 01-21-2008, 02:22 AM
dansgalaxy dansgalaxy is offline
Newbie
 
Join Date: Oct 2007
Location: Swindon, UK
Posts: 23
dansgalaxy is on a distinguished road
Send a message via MSN to dansgalaxy Send a message via Yahoo to dansgalaxy
Default

*roll eyes*

Lol,

Okay in html/CSS you cant do simple things like:

1+1=2 and have it work it out

but in php you can do something like:

$total = 1+1;

echo $total (will show 2)

and thats the simple stuff...

HTML/CSS/XHTML is ONLY a display/Markup lanagage which controls the look at layout, all the server does to a html file is simple send it to the browser.

if the server reconises it as PHP it will put it through the PHP parser which works it all out and if you like it creates the final set of html and THEN apache sends it to the browser...

:D
__________________
Honest, Personal UK Webhosting
Get 25% of ANY shared package for life ~ Promo: freelancegossip
.::XDnet.co.uk::.
Reply With Quote
  #6 (permalink)  
Old 02-05-2008, 10:28 PM
Chainsawkitten's Avatar
Chainsawkitten Chainsawkitten is offline
Newbie
 
Join Date: Jan 2008
Location: Sweden
Posts: 9
Chainsawkitten is on a distinguished road
Send a message via MSN to Chainsawkitten
Default

Actually, it doesn't wait until all the code has been finished. It sends html every time you use echo.

Then why should we use PHP to echo the answer of 1+1 instead of just writing 2 in a html file? The answer is that that was just a simple example. PHP can do much more advanced stuff like getting things from databases etc. This forum is coded in PHP which allows the users to create and answer in different threads. How would you let the user create a thread in pure html?
Reply With Quote
  #7 (permalink)  
Old 06-05-2008, 06:01 PM
Sarahlee's Avatar
Sarahlee Sarahlee is offline
FreeLanceGossip Admin
 
Join Date: Jun 2008
Posts: 267
Sarahlee is on a distinguished road
Default

Good question.

Php is so much more advanced than HTML. HTML is for those who are just starting out in coding websites....PHP is for advanced users. I'm not at all really familiar with PHP very much but in this forum, I figure some things out just by lookin at the code
Reply With Quote
  #8 (permalink)  
Old 06-07-2008, 03:57 PM
RandyC's Avatar
RandyC RandyC is online now
FreeLanceGossip Admin
 
Join Date: Sep 2007
Location: The Closet
Posts: 131
RandyC is on a distinguished road
Send a message via MSN to RandyC
Default

I can code PHP however I rarely ever use it anymore I have moved to using java, javascript, and other web coding formats. PHP is more cleaner and simple then all the others however there are too many ways to hack it and get into it, that the creators need to fix and quickly. PHP is basically what makes the internet run now adays. almost every website you visit uses PHP weather it is a simple include function or something as complex as an internet content management system/forum.
__________________
Logic Depths Network Homepage
Reply With Quote
  #9 (permalink)  
Old 06-10-2008, 03:53 AM
dansgalaxy dansgalaxy is offline
Newbie
 
Join Date: Oct 2007
Location: Swindon, UK
Posts: 23
dansgalaxy is on a distinguished road
Send a message via MSN to dansgalaxy Send a message via Yahoo to dansgalaxy
Default

Quote:
Originally Posted by Chainsawkitten View Post
Actually, it doesn't wait until all the code has been finished. It sends html every time you use echo.

Then why should we use PHP to echo the answer of 1+1 instead of just writing 2 in a html file? The answer is that that was just a simple example. PHP can do much more advanced stuff like getting things from databases etc. This forum is coded in PHP which allows the users to create and answer in different threads. How would you let the user create a thread in pure html?
I did say it was a very simple example, of course it can be used for much much more, i personally have great fun with it

Love helping people out, especially when the services are paid ;)

Dan :-)
__________________
Honest, Personal UK Webhosting
Get 25% of ANY shared package for life ~ Promo: freelancegossip
.::XDnet.co.uk::.
Reply With Quote
  #10 (permalink)  
Old 06-10-2008, 07:26 PM
web_doctor web_doctor is offline
Super Moderator
 
Join Date: Jun 2008
Location: PH
Posts: 31
web_doctor is on a distinguished road
Default

PHP is one of the great web programming language we can use on the internet, its codes are pretty simple. you can learn them in php.net.

A lot of tutorials for a beginner programmers.
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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
Trackbacks are On
Pingbacks are On
Refbacks are On



Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
© FreelanceGossip.com
A vBSkinworks Design