Netbeans нет php project

Netbeans — Php Support

Netbeans IDE How to enable PHP support in NetBeans and create a PHP project from scratch in Netbeans with steps.

I installed the latest Netbeans and did not find any PHP project templates to create a PHP project.

When I checked the New project options, It contains all standard web and maven application options.

This tutorial explains how to add Php support and create a PHP project in Netbeans. It is easy to add Php support via PHP Plugins.

by adding PHP support to Netbeans, Developer has required tools such as an Editor, debugger, and documentation for PHP application development.

How to add PHP Support in Netbeans

  • In Netbeans Editor, Select the Tools menu -> Plugins Option
  • It opens Plugins Window Dialog
  • Select the Settings Tab
  • Select Configuration of Update Centers dropdown with the value Netbeans Distribution option checked if already not checked.
  • Next, Go to the Available Plugins Tab
  • You will see a lot of plugins for PHP frameworks such as PHP, Zend Framework, CakePHP Framework, etc.
  • Checked the PHP option plugin, It provides tools for PHP editor, debugger, etc.
  • Click on the Install option, it installs PHP and its dependencies ApiGen, and PHP Static Analysis.
  • Restart IDE to complete installation.
  • Now, able to create PHP Projects
Читайте также:  Java thread state suspended

How to create a PHP project in Netbeans

Once the PHP plugin is added to Netbeans, You are able to see PHP application options in Netbeans.

To create a PHP project, please follow the below steps

  • Select File Menu + Select New Project ( or use shortcut command Ctrl + Shift + N )
  • It Opens the New Project window dialog, Select the following
  • Select PHP in Categories on the left side, Right side, Select PHP Application .
  • Next, Enter the following
    • Project Name: firstphpproject
    • sources Folder: newly created project location to save
    • Optionally, You can choose the PHP version and encoding
    • Next, you can also choose PHP frameworks

    Источник

    Быстрое учебное руководство по PHP IDE NetBeans

    В этом документе приведены общие рекомендации по подготовке среды для разработки PHP, настройки проекта PHP и разработки и запуска первого приложения PHP в IDE NetBeans для PHP.

    netbeans stamp 80 74 73

    Для работы с этим учебным курсом требуется следующее программное обеспечение и ресурсы.

    Систему PHP, веб-сервер и базу данных можно установить отдельно или использовать пакеты AMP (*A*pache, *M*ySQL, *P*HP).

    Установка и настройка

    Следующие документы содержат описание одного или двух способов установки веб-стека PHP в операционной системе. Эти указания не являются исчерпывающими. Веб-стек состоит из программного обеспечения других производителей, среда может различаться, а разработчик может предпочесть другой пакет AMP или другой способ установки PHP. Приведенные указания следует дополнить собственными наблюдениями.

    Настройка проекта PHP в IDE NetBeans для PHP

    Дополнительные свдения по установке и запуске IDE NetBeans см. в документации по установке.

    Для начала разработки PHP в IDE NetBeans для PHP сначала необходимо создать проект. Проект содержит информацию о размещении файлов проекта и способе запуска и отладки приложения (конфигурация запуска ).

    1. Запустите среду IDE, перейдите в окно «Проекты» и выберите команду «Файл > Создать проект». Откроется панель «Выберите проект».
    2. В списке категорий выберите PHP.
    3. В области «Проекты» выберите «Приложение PHP» и нажмите кнопку «Далее». Откроется панель «Новый проект PHP > Имя и местоположение».

    new project name location

    Figure 2. Панель ‘Имя и местоположение’ мастера создания проектов PHP с местоположением исходной папки как корня документации XAmpp.

    1. В текстовом поле наименования проекта введите NewPHPProject .
    2. В поле исходной папки перейдите к корню документов PHP и создайте подпапку NewPHPProject . Корень документов – это папка, в которой веб-сервер ищет файлы для открытия в браузере. Корневой узел документов указан в файле настройки веб-сервера. Например, в Xampp корнем документов является папка XAMPP_HOME/htdocs.
    3. В остальных полях оставьте значения по умолчанию. Нажмите кнопку «Далее». Откроется окно «Настройки выполнения».

    new project run config

    1. В раскрывающемся списке «Выполнить как» выберите «Локальный веб-сайт». Начнется выполнение проекта на локальном сервере Apache. Проект можно также выполнить удаленно через FTP или запустить его из командной строки.
    2. Оставьте поле «URL-адрес проекта» без изменений.
    3. Нажмите кнопку «Завершить». Средой IDE будет создан проект.

    Выполнение своего первого проекта PHP

    1. Запустите среду IDE, выберите команду «Файл > Открыть проект». Откроется диалоговое окно «Открыть проект».
    2. Выберите NewPHPProject и нажмите кнопку «Открыть проект». В окне проекта появится дерево проекта NewPHPProject, а в редакторе и в окне навигатора откроется файл index.php .

    getting started open new project

     echo "Hello, world! This is my first PHP project!";
    1. Для выполнения этого проекта поместите курсор на узел NewPHPProject и в контекстном меню выберите команду «Выполнить». На рисунке ниже показано, что должно отобразиться в окне браузера.

    getting started browser hello world

    Поздравляем! Программа работает!

    Использование серверов баз данных с IDE NetBeans для PHP

    Можно использовать различные серверы баз данных с IDE NetBeans для PHP, хотя наиболее популярным является сервер MySQL. Загрузку можно осуществить отсюда. Примечание. Рекомендуемая версия продукта: MySQL Server 5.0. Дополнительные материалы:

    Что дальше?

    В это же время для поиска информации, связанной с типом разрабатываемых приложений, используйте учебные карты IDE NetBeans для этого типа приложения. Каждая учебная карта содержит ряд учебных курсов и руководств различных уровней сложности. Доступны следующие учебные карты:

    Для отправки комментариев и предложений, получения поддержки и новостей о последних разработках, связанных с PHP IDE NetBeans присоединяйтесь к списку рассылки users@php.netbeans.org.

    Источник

    Getting Started with PHP Applications

    This document provides general guidelines for preparing the environment for PHP development, setting up a PHP project, and developing and running your first PHP application in the NetBeans IDE for PHP.

    Requirements

    To follow this tutorial, you need the following software and resources.

    You can install the PHP engine, web server and database separately or use AMP (Apache, MySQL, PHP) packages.

    Installation and Configuration

    The following documents contain instructions for one or two ways to set up a PHP web stack on your operating system. These instructions are not definitive. The web stack consists of third-party software, your environment may differ, and you might prefer a different AMP package or another way to set up PHP. You might need to supplement our instructions with your own investigations.

    Setting up a PHP Project in the NetBeans IDE for PHP

    For help in installing and starting NetBeans IDE, please see the installation documentation.

    To start PHP development in the NetBeans IDE for PHP, you first need to create a project. A project contains the information on the location of the project files and the way you want to run and debug your application (run configuration).

    1. Start the IDE, switch to the Projects window, and choose File > New Project. The Choose Project panel opens.
    2. In the Categories list, choose PHP.
    3. In the Projects area, choose PHP Application and click Next. The New PHP Project > Name and Location panel opens.

    new project name location

    Figure 1. Name and Location panel of New PHP Project wizard, with Source Folder location as XAmpp document root.

    1. In the Project Name text field, enter NewPHPProject .
    2. In the Sources Folder field, browse for your PHP document root and create a subfolder there called NewPHPProject . The document root is the folder where the web server looks for files to open in the browser. The document root is specified in the web server configuration file. For example, on Xampp, the document root is XAMPP_HOME/htdocs.
    3. Leave all other fields with their default values. Click Next. The Run Configuration window opens.

    new project run config

    1. In the Run As drop-down list, select Local Web Site. The project will run on your local Apache server. Your other options are to run the project remotely via FTP and to run it from the command line.
    2. Leave the Project URL at default.
    3. Click Finish. The IDE creates the project.

    Running Your First PHP Project

    1. Start the IDE, choose File > Open Project. The Open Project dialog box opens.
    2. Select NewPHPProject and click Open Project. The NewPHPProject tree appears in the Projects window and the project’s index.php file opens in the editor and in the Navigator window.

    getting started open new project

     echo "Hello, world! This is my first PHP project!";
    1. To run the project, position the cursor on the NewPHPProject node and choose Run from the context menu. The figure below shows what you should see in the browser window:

    getting started browser hello world

    Congratulations! Your program works!

    Using Database Servers with NetBeans IDE for PHP

    You can use various database servers with the NetBeans IDE for PHP, although the most popular is the MySQL server. Downloads are available here.

    Источник

Оцените статью