#phpfeatures
Explore tagged Tumblr posts
tpointtechedu · 3 months ago
Text
0 notes
elintechsystems · 5 years ago
Photo
Tumblr media Tumblr media
Interesting facts about PHP programming Language
5 notes · View notes
codeclub32 · 5 years ago
Text
File handling in PHP with Source code
Tumblr media
Introduction File handling is a main part of any application or website. This handling part can perform various task. Such as open file, read, write and delete files. As a programming language php can perform the similar task like other program. Well PHP is a scripting programming language. We can perform various task using this program. PHP program is especially built for web development. But we can still do various works using php. It is simple and easy to learn. In this tutorial we are going to open a txt file, read, write and delete the file. It is easy to open a txt file using computer. We are doing this file handling function using php program. You will be provided the source code along with this article. We will be using php built in functions. Such as fopen, fread, fwrite, unlink etc. Make sure that all the php files has opening and closing tag. You will get error if not use tag properly. The fopen() function is useful for creating a new txt file. You must provide a file name. A example.txt file will be created. I am proving example.txt for my file name. see the code for creating file below.  The fwrite() function writes on the newly created file. You can write anything on that file using fwrite() function. Write “I like php” and see what happens. The example.txt file that is created is use for writing. We are writing on same file. further file handling For reading from file we use fread() php function. We are reading from the example.txt file. Read the full article
0 notes
codeclub32 · 5 years ago
Text
What is PHP program? Features, Merits & Demerits
Tumblr media
Introduction PHP program stands for Hypertext Pre-processor. It is an open-source, scripting and object-oriented programming language.   PHP program is especially built for web development. The creator of PHP is Danish Canadian and release it in 1994. PHP is useful for developing dynamic websitesIt is simple and easy to learn. This program is interpret and does not require compilation. This program php is totally free and does not require any cost. It is not a front end language. PHP is actually a backend scripting language. MySQL, Maria DB, Oracle and many other databases are useful using PHP. Most people said that it is very difficult to learn. Well it is not difficult. It is easy. You just require some basic knowledge of html, css, js, sql etc. The php code is embedded inside html code. PHP is one of the high demand programming language. Any website that is build till today includes PHP program somewhere. Using PHP you can develop dynamic websites on your own. You can easily get familiar with PHP once you start using it. This is how you write PHP code inside html. Example PHP Frameworks php program PHP Frameworks As we all know that php is widely used programming language. PHP has its own framework. A php framework is a platform for developing web application. It basically provides structure. Using framework will definitely save time and effort. It also reduces repetitive code. The framework provides an attractive user interface. Read the full article
0 notes