Skip to main content

Posts

Showing posts with the label git

PHP guide- Everything about PHP

🔥 PHP GUIDE 🔥 ✨What is PHP❓ PHP is an acronym for "PHP: Hypertext Preprocessor". It is a widely-used, open source scripting language.PHP scripts are executed on the server And it is free to download and use.. ✨What is a PHP File❓ PHP files can contain text, HTML, CSS, JavaScript, and PHP code .PHP code is executed on the server, and the result is returned to the browser as plain HTML .PHP files have extension ".php" ✨What Can PHP Do❓ 💢PHP can generate dynamic page content 💢PHP can create, open, read, write, delete, and close files on the server 💢PHP can collect form data 💢PHP can send and receive cookies 💢PHP can add, delete, modify data in your database 💢PHP can be used to control user-access 💢PHP can encrypt data 💢With PHP you are not limited to output HTML. You can output images, PDF files, and even Flash movies. You can also output any text, such as XHTML and XML. ✨Why PHP❓ 💢PHP runs on various platforms (Windows, Linux, Unix, Mac OS X, et...

Most important git command every Developers should know!

Git command every Developers should know Now days git is necessary to learn for every Developers. To make it's easy there is some command that you should know. 1.Git -clone Cloning is a process of creating an identical copy of Git Remote Repository to the local Machine. When we clone the repository, all the files are downloaded to local Machine but Remote Git Repository remain unchanged 2.Git-Branch :- Branches are highly important in the git world. By using branches , several Developers are able to work in parallel on the same project simultaneously. We can use the git branch command for creating , listing and deleting branches. 3.Git-Checkout:- The git checkout command is use to check out of an existing branch and view another branch of code , but it can also be use to store files. 4.Git-Status:- The git status command give us all the information regarding current Branch. 5.Git-Add:- The git add command add a...