yii2 advanced application template demo site

User Rating:  / 13

yii2 framework ( Alpha release ) advanced application template : 

https://github.com/yiisoft/yii2/blob/master/docs/guide/apps-advanced.md

This template is for large projects developed in teams where backend is divided from frontend, application is deployed to multiple servers etc. This application template also goes a bit further regarding features and provides essential database, signup and password restore out of the box.

How to create a module for Joomla 2.5

User Rating:  / 21

We can create our own module for Joomla 2.5 CMS by writing our own code we follow the following procedure:

1. Decide a name. All modules start with mod_

   ( e.g : mod_mymodule )

2. create a directory (eg mod_mymodule) the following files:

    index.html

    helper.php

    mod_mymodule.xml

    mod_mymodule.php

   \tmpl\default.php

   \tmpl\index.html

Installing Drupal CMS on Windows PC

User Rating:  / 2

 One of the most popular Content Management Systems (CMS) is the open source Drupal

 To Drupal is written in PHP and uses a MySQL database

 We show in simple steps how to make a Drupal installation in wampserver we have installed on our computer or on a server

 wampserver installation procedure described here

The procedure is described as follows:

Installing Joomla! CMS on Windows PC

User Rating:  / 3

One of the most popular Content Management Systems (CMS) is the open source Joomla!.

To Joomla is written in PHP and uses a MySQL database

We show in simple steps how to do an installation in Joomla wampserver we have installed on our computer or a server

wampserver installation procedure described here

The procedure is described as follows:

Installing Web Server (wamp) on PC for web application development

User Rating:  / 3

Before getting Hosting, domain names, etc., it would be good to create an integrated development environment to our computer to develop our applications, we do our tests, and the application will be ready to publish on Internet, which has a monetary cost.

    Depending on the programming language and environment that we decide to use will need to install on your PC and the corresponding Web Server together with the need for the language and the database will use.

PHP POST method

User Rating:  / 0

The POST method transfers information via HTTP headers. The information is encoded as described in case of GET method and put into a header called QUERY_STRING.

  • The POST method does not have any restriction on data size to be sent.
  • The POST method can be used to send ASCII as well as binary data.
  • The data sent by POST method goes through HTTP header so security depends on HTTP protocol. By using Secure HTTP you can make sure that your information is secure.
  • The PHP provides $_POST associative array to access all the sent information using GET method.

PHP GET method

User Rating:  / 2

There are two ways the browser client can send information to the web server.

The GET Method

The POST Method

The GET method sends the encoded user information appended to the page request. The page and the encoded information are separated by the ? character.

Resize image with php

User Rating:  / 18

The following php class resizes the image to a specific size.

Create mysql database and tables with php

User Rating:  / 8

Create database and table(s) in MySQL Database with php code:

Select data from mysql database with PHP

User Rating:  / 0

How to select data from mysql database with php :

1. Make connection to mysql

   

Login  

   

     

© Developerpages