category

Creating form in Zend Framework in Netbeans IDE

My another work in Zend Framework is forms. In this post I show You how creating form with several form elements. Begin with ... this file code: My form If You call only form variable for current object You see all form. Run application and see result:

Database application in Zend Framework 1.12.3 in Netbeans 7.4 get data from several relational tables.

In last post You create Zend project: magazine. Lets open in Your project application.ini file( application/configs folder). ... s action index controller. It’s name is authors. In layout.phtml file add code with links for authors and articles websites.

Connection to MySQL database from Zend framework 1.12.3 in Netbeans

First create in MySQL server country_db database with only one table country. I do it by means of phpMyAdmin. You write in e ... try continent                                                                                   Here You run Your project.

How install Zend Framework 1.12.3 in Xampp server 1.8.3?

In my last post I write about xampp installation. Here You try install Zend Framework 1.12.3. So go to http://framework.zend ... ibrary; C:\xampp\php\Zend1\bin; Click OK in all open windows. In another posts I configure and test xampp and Zend Framework.

Configuration and testing Xampp and Zend Framework

First You test xampp server. Open Xampp Control Panel. Click Start button places on the right from Apache label.  The same Y ... end very well: Apache is working, PHP is working and MySQL have root user with password, Zend Framework is working, too.    

Zend Framework 1.12.3, part 4 – more actions for controller

Today I decide to add several actions to my animals controller. I have describe action, so I add else two: sepia and whitebl ... its content. And paste into sepia.phtml and whiteblack.phtml. In sepia.phtml change content for it: My dog in sepia picture

The simple way to install LESS preprocessor through node.js and compile LESS file to CSS file

Lately I started my adventure with LESS. It is first post about the LESS for you. If you don’t know what is the LESS, I expla ... again LESS compiler. The style.css was changed. Look at its content. After run HTML file you see website like that below.

Configuration Netbeans 7.4 for Zend Framework 1.12.3

My favorite editor for programming is Netbeans.  I would like to create Zend framework projects. So after installing Netbean ... iguration for Zend, clicking on Zend tab. In this window You may change Your configuration for xampp, php or Zend framework.

Zend Framework 1.12.3, part 3 – adding layout to project

In last post You build application with your controller animals and actiondescribe. In this part we rebuild our application, ...      } And this new structure of application:In layout.phtml add new line after meta tag:Lets see result running application.

How create MySQL database contains 2 relational tables in phpMyAdmin?

First create in MySQL server database with animals name. We do it in phpMyAdmin. Click on Databases tab in phpMyAdmin. In Cr ... constraint name as fk_animal_classes and select cascade for on delete and for update. Save settings clicking on Save button.

In Zend Framework 1.12 Application error: No adapter found for Application Model DbTable

I met last time situation in that I run my application with error: No adapter found for Application_Model_DbTable. What’s wr ... tion.ini file and paste it before [staging : production] section: Running application You see list of animals from database.

CRUD Zend Framework application in Netbeans.

If You would like to create CRUD application first You must create database with tables. CRUD means: create read update dele ... urces.router.routes.create.defaultAction = "createform" And in index view add on the end of file link for adding new animal:

JNDI DataSource SQL Server used in Web Application created in Netbeans and GlassFish server

In this post I describe you how configuring JEE application to connect to SQL Server database through DataSource. In my last ... People It is new content index.jsp file: Run application.      

How use uniqueidentifier datatype in SQL Server?

This post describe what is uniqueidentifier and how use it? The uniqueidentifier is datatype in SQL Server. It stored hexade ... into ident12(name) values('Brazil'); The error don’t display so You may try value for this record. select * from ident12;

How install XAMPP 1.8.3 on Windows 7 OS?

In this post I describe You, how install xampp package. This server is very popular  server environment contained Apache ser ... s You find in C disc in xampp folder. You see Control Panel window. I the next posts I describe how install Zend Framework.  

First project in JSF in Netbeans

In Netbeans you may create in simple way your Java Server Faces project. First create project. Choose form menu File->New ... displays by browser: If you find out to write simple JavaServer Faces application in Netbeans IDE is very simple and easy.  

Create the Data Source in the Report Builder

Let’s start to run Report Builder in Start on Windows OS. You see Report Builder window. Close Getting Started window, Rig ... Connection Result window and then in main window. On the left side in the Report Builder window you see your Data Source.  

How install R software on Windows OS?

R is a free software for statistical computing and graphics for UNIX, Windows and MacOS. Installation R software is very simp ... ts for 32-bit and 64-bit on the Desktop: If You run R programm clicking the shortcut the windows similar to below displays:

JNDI DataSource SQL Server configuration in Tomcat for only one JSP application

In this post I describe you how configuring JEE application to connect to SQL Server database through DataSource. First crea ... our localization driver and click the Open button. In tree of project you can see it. Run application.                      

Zend Framework 1.12.3, part 2

In this post You find out how create new controller and action to it. Beginn with create your project, its name may be MyDog ... t controller and default action with these names. And You may run application click on green icon in top tools menu.