Skip to main content

Downloading Installing and Configuring Brackets Editor for PHP

Tutorial Title: Downloading Installing and Configuring Brackets Editor for PHP
Course: PHP
Instructor: Muhammad Samim


1. Downloading


2. Installing
  • Go to the folder of downloaded file
  • Double click on file to install

3. Configuring
  • Click on File
  • Click on Project Settings and Enter below address
  • http://localhost/projectFolderName

4. Adding extension (Emmet)
  • Click on File
  • Click on Extension Manager
  • Search Emmet
  • Select and Click on Install

5. Adding extension (mobokai) dark background (Optional)
  • Click on File
  • Click on Extension Manager
  • Click on Themes
  • Search monokai
  • Find and select scheme from sublime text and Install
  • Click on View
  • Click on Themes
  • Click on Current Theme and Select Monokai 
  • Click on Done

Comments

Popular posts from this blog

External Page Submission/Submission to another page

Tutorial Title:   External Page Submission/Submission to another page Course: PHP Instructor: Muhammad Samim 1. Submitting action from one page to another page 2. First make one page with name page1.php <!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <title>Document</title> </head> <body>      <form action="page2.php" method="post"> //It will direct from page1.php to page2.php           <br><input type="text" placeholder="Email" name="anyNameForEmail">     <br><input type="password" placeholder="Password" name="anyNameForPassword">     <br><input type="submit" name="click">    </form>   </body> </html> 3. Second make another file with name page2.php <?php if(isset($_POST["click"])){     $anyNameO...

Extracting Information from form

Tutorial Title:  Extracting Information from form Course: PHP Instructor: Muhammad Samim 1. <?php if(isset($_POST["anyName"])) { $anyNameOfVariableForEmail = $_POST["anyNameForEmail"]; //Now because of it email must be typed otherwise it will not work $anyNameOfVariableForPassword = $_POST["anyNameForPassord"];//Now because of it password must be typed otherwise it will not work echo $anyNameOfVariableForEmail; //It will display the email echo $anyNameOfVariableForPassword; //It will display the password } ?> <!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <title>Document</title> </head> <body>      <form action="21form.php" method="post">        <input type="text" placeholder="Email" name="anyNameForEmail">        <input type="password" placeholder="...