This is good page to find useful PHP scripts. PHPfront is a depository of PHP codes and snippets. Learn PHP from these free codes or add them to your own scripts. PHPfront is 100% free to use and supported by its own users. If you would like to add a snippet of code to the site, you can do so on the submit page.
It aims to be one of the biggest free PHP script repositories, but being still in the infancy it needs more users to join and add useful scripts. So as a community it can be made into a very good repository. It will surely help PHP beginners. But, i found some really interesting scripts in its presently small collection of scripts.
See it for yourself at-
http://www.phpfront.com/
Showing posts with label PHP. Show all posts
Showing posts with label PHP. Show all posts
Saturday, May 30, 2009
Thursday, May 14, 2009
How to add PHP tags to blogs
Hey guys i've found out how to add php tags and hence examples to the blog. We just have to replace the '<' symbol in tags with a '<' statement, which will render the '<' symbol for us. Its as easy as that. The problem is that google or blogspot server supports the php and hence when i quote examples, they were actually parsing it, i.e, executing the php code. So in order to prevent that we'll render the '<' symbol in the other way, and presto it works. Also put the examples within a <pre> </pre>, it will show the examples as a code-fragment(i.e, in that style).
Now i'll quote more php examples in the blog.
Now i'll quote more php examples in the blog.
Tuesday, April 14, 2009
How to test the PHP installation.
I had forgot one important component in the PHP programming, the Editor. The editor is very important to help you in efficient programming, it can help you with code-assist, code-complete(tag completion), code alignment, etc..
So now get hold of a good PHP editor(I use Easy-eclipse for PHP), and type in the following code-
This is arguably the most popular PHP code. The above code's output is the complete information about the PHP version you have installed and its modules..
Try it.
So now get hold of a good PHP editor(I use Easy-eclipse for PHP), and type in the following code-
<html> <head> <title>PHP Test</title> </head> <body> This is an HTML line <?php echo “This is a PHP line”; phpinfo(); ?> </body> </html>
This is arguably the most popular PHP code. The above code's output is the complete information about the PHP version you have installed and its modules..
Try it.
How to start with PHP Programming.
To start with the PHP programming one should have the following tools-
***************************************************************************************
Instead of downloading all the above tools, one-by one one can easily download one of the Integrated packages, called a Stack, that suits ones needs. I'm using the LAMP stack which can be used in Linux, with Apache as the Web-server, MySQL the database and PHP. The Windows equivalent is WAMP.
Many other stacks are also available, mostly in open-source visit the following site to select the Stack that suits your needs-
Guys, now what are u waiting for, get hold of the Stack of your choice and get going.
- PHP- Goto http://www.php.net/downloads.php to find the latest version and download it.
- Web-Server-As PHP is a server side language one would need a web-server to run the PHP code. I'm using the Apache web-server.
- Database-One would essentially need one database for their website(in most cases). I would suggest MySQL, as it is a fully open-source.
***************************************************************************************
Instead of downloading all the above tools, one-by one one can easily download one of the Integrated packages, called a Stack, that suits ones needs. I'm using the LAMP stack which can be used in Linux, with Apache as the Web-server, MySQL the database and PHP. The Windows equivalent is WAMP.
Many other stacks are also available, mostly in open-source visit the following site to select the Stack that suits your needs-
Guys, now what are u waiting for, get hold of the Stack of your choice and get going.
Why examples are not added for PHP..
I've not yet added any example for PHP programs, as i'm unable to show the PHP tags, in the blog.. It simply won't come visible in the blog, even though I type it. Can Anyone tell me how to make the PHP tags visible..
Please help me, its important..So as to keep the blog ticking... I'll surely find a way around soon.
Please help me, its important..So as to keep the blog ticking... I'll surely find a way around soon.
Friday, April 10, 2009
About PHP.
PHP-Hyper Text Preprocessor, is a very powerful web-scripting language. Most importantly it is a server-side language, i.e, all the PHP scripts will be send to the server, executed there and sent as plain HTML to the client machine.
It is an Open-source software, hence it can be used in any way we like, with no need to pay Royalty or any such fee....
PHP supports more than 25 databases available, so you can choose, as per your wish.
I'm sure u'll enjoy coding in PHP, as it is very dynamic.
It is an Open-source software, hence it can be used in any way we like, with no need to pay Royalty or any such fee....
PHP supports more than 25 databases available, so you can choose, as per your wish.
I'm sure u'll enjoy coding in PHP, as it is very dynamic.
Subscribe to:
Posts (Atom)