| | |||||
| ||||||||
| Programming PHP, Perl, Ruby on Rails, AJAX, HTML, XHTML, CSS, JavaScript, MySQL and any other coding topics. |
![]() |
| | LinkBack | Thread Tools |
| | #2 (permalink) | ||||
| NamePros Legend Join Date: Dec 2005 Location: Philippines - www.Nabaza.com
Posts: 19,785
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
you can download it from here http://www.php.net/downloads.php | ||||
| |
| | THREAD STARTER #6 (permalink) | ||||
| New Member Join Date: Jun 2008 Location: India
Posts: 22
![]() |
Ok, How can i open a file in php to write content in the file? | ||||
| |
| | #8 (permalink) |
| NamePros Member Join Date: Jun 2007
Posts: 141
![]() | PHP is hypertext preprocessor Its a server side scripting language. More details : http://www.php.net/ Its platform independent.
__________________ Free Tools for Webmasters 6000 Manual Directory Submission for $170 :p Find Best WebHosting Solutions :p |
| |
| | #9 (permalink) |
| Senior Member Join Date: Aug 2005
Posts: 1,717
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | PHP = A Web Developer's Dream! Its a highly function server side scripting language that can almost do anything. Awesome for but not limited to: form handling, content management, user registration, login management (cookies/sessions), parsing rss feeds, etc. I could go on and on but if you are serious about it I would most definitely take the time to learn it. If PHP is peanut butter...then...MySQL would be the jelly. Together they can make one heck of a good sandwich. |
| |
| | #10 (permalink) | ||||
| DomainersUniversity.com ![]() Join Date: Feb 2005 Location: Oswego, NY
Posts: 4,735
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
__________________ . . Expired Domain Search -- ExpiredDomainBoss.com | Sell Domain Names -- DomainProfitsClub.com ----------------------------------------------------------------------------------------------- | ||||
| |
| | #12 (permalink) |
| NamePros Member Join Date: Aug 2008 Location: Bristol
Posts: 42
![]() | I you want to learn it, check out the website in my sig. /selfPromotion
__________________ Why not learn PHP today? |
| |
| | #13 (permalink) |
| NamePros Member Join Date: Apr 2008 Location: Florida
Posts: 118
![]() | In layman's terms: Static sites are made from HTML. When you type the web address you get the code that is in the file at that address. Nothing changes. PHP is a server-side language. You never see it in the code of the web page. It is in the file on the server but when the server reads the file if it finds PHP it does whatever the code says, which may include inserting some HTML code. It takes the static HTML code and adds the HTML code from PHP and shows you the result. Example: <body> <p>Welcome</p> <p>Two plus two is <?php $number = 2+2; echo $number; ?> </p> ????: NamePros.com http://www.namepros.com/programming/485319-what-is-php.html </body> Turns into: <body> <p>Welcome</p> <p>Two plus two is 4</p> </body> You never see the actual code (inside <?php ?>).
Last edited by kbweb; 08-23-2008 at 06:54 PM.
|
| |
| | #14 (permalink) |
| If only you knew... Join Date: Oct 2005 Location: Inside your head...
Posts: 998
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | kbweb, If that doesn't put the basics where folks can understand, nothing would
__________________ --- The greatest truths ever told, and the greatest lies ever told, all consist of exactly the same three words: "I LOVE YOU" --- The best say little, only say what is important.....then they shut up and sit down. |
| |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| |