yii2 advanced application template demo site
- Details
- Category: Web Development
- Created on Thursday, 20 February 2014 13:18
- Last Updated on Monday, 28 July 2014 06:26
- Published on Thursday, 20 February 2014 13:27
- Written by Administrator
- Hits: 28640
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
- Details
- Category: Joomla
- Created on Thursday, 07 March 2013 13:56
- Last Updated on Wednesday, 27 May 2015 08:03
- Published on Thursday, 07 March 2013 13:56
- Written by Administrator
- Hits: 23769
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
- Details
- Category: Drupal
- Created on Friday, 08 February 2013 15:37
- Last Updated on Friday, 08 February 2013 15:40
- Published on Friday, 08 February 2013 15:37
- Written by Administrator
- Hits: 9821
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
- Details
- Category: Joomla
- Created on Wednesday, 06 February 2013 08:47
- Last Updated on Friday, 08 February 2013 09:08
- Published on Wednesday, 06 February 2013 09:19
- Written by Administrator
- Hits: 8719
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
- Details
- Category: Web Development
- Created on Wednesday, 06 February 2013 09:07
- Last Updated on Wednesday, 06 February 2013 09:22
- Published on Wednesday, 06 February 2013 09:09
- Written by Administrator
- Hits: 10157
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
- Details
- Category: php
- Created on Tuesday, 11 December 2012 15:06
- Last Updated on Tuesday, 11 December 2012 15:10
- Published on Tuesday, 11 December 2012 15:06
- Written by Administrator
- Hits: 11437
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
- Details
- Category: php
- Created on Tuesday, 11 December 2012 14:55
- Last Updated on Tuesday, 11 December 2012 14:56
- Published on Tuesday, 11 December 2012 14:55
- Written by Administrator
- Hits: 8509
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
- Details
- Category: php
- Created on Wednesday, 17 October 2012 11:07
- Last Updated on Wednesday, 17 October 2012 11:07
- Published on Wednesday, 17 October 2012 11:07
- Written by Administrator
- Hits: 14972
The following php class resizes the image to a specific size.
Create mysql database and tables with php
- Details
- Category: php
- Created on Tuesday, 22 May 2012 09:18
- Last Updated on Tuesday, 22 May 2012 09:22
- Published on Tuesday, 22 May 2012 09:18
- Written by Administrator
- Hits: 12564
Create database and table(s) in MySQL Database with php code:
Select data from mysql database with PHP
- Details
- Category: php
- Created on Tuesday, 08 May 2012 09:18
- Last Updated on Tuesday, 22 May 2012 10:53
- Published on Tuesday, 08 May 2012 09:18
- Written by Administrator
- Hits: 8522
How to select data from mysql database with php :
1. Make connection to mysql