PHP

TwitterFacebook
Get flash to fully experience Pearltrees
http://www.dbhelp.ru/i18n-subdomains-and-url-rules/page/

Многоязычность субдоменов и URL-правила (Перевод Cookbook) yii framework blog - маленький блог

Это руководство предназначено для более-менее продвинутых пользователей. Если вы только что начали работу с Yii Framework-ом, вам стоит вернутся на эту страницу позднее :-) Некоторые размышления В Yii мы обычно определяем статические правила маршрутизации (url-rules) в основном конфигурационном файле. В настоящее время в Yii нет встроенной поддержки субдоменов и динамических маршрутов.
Я думаю, всем нам в жизни приходилось слышать такое слово как «фреймворк». Многие из вас действительно вникли в саму суть данного слова, а кто-то просто принял к сведенью определение слова и не стал вникать во все подробности. Так или иначе серия статей «Первые шаги» нацелена на новичков в программировании на PHP, поэтому ничего страшного если вам совершенно незнакомо слово «фреймворк». Фреймворк это набор всевозможных библиотек (инструментов) для быстрой разработки повседневных (рутинных) задач. Чаще всего использует одну из распространенных архитектур приложения (к примеру MVC ) для разделения проекта на логические сегменты (модули).

Шаг 1: Что такое фреймворк? (Первые шаги) yii framework blog - маленький блог

http://www.dbhelp.ru/what-is-framework/page/
http://www.php-scripts.com/php_diary/php_scripts.html date and time functions example #1 ( 12/18/99 ) source - displaying the current date in an HTML page (incorrect) example #2 ( 12/18/99 ) source - displaying the current date in an HTML page (correct) example #3 ( 12/18/99 ) source - current month/day/date format example #4 ( 12/18/99 ) source - current month/day/date with HTML colors & formatting example #5 ( 12/19/99 ) source - change background color based on day of the week using if else elseif statements example #6 ( 12/19/99 ) source - change background color based on day of the week using array example #7 ( 12/21/99 ) source - add date time stamp "page last updated on..." using filemtime function

PHP Example Scripts

Outside of installation and configuration issues, reader questions pertaining to user authentication and session management almost certainly rank among the most common I receive on an ongoing basis. The logic itself is pretty straightforward; however, even a simple implementation involves a number of small but important details which aren't always so easy to figure out the first time around. This tutorial serves to dispel much of the confusion by guiding you through the implementation of a simple user authentication feature which will subsequently keep the user logged in via a session . The Login Form Let's start with the easiest part of the feature, creating the login form. There's not much to describe here, as this form consists of just username and password fields, presented here:

Implementing User Authentication and Session Management with PHP

http://www.phpbuilder.com/columns/user-authentication/Jason_Gilmore05172011.php3

HTML - PHP Form Example

http://www.tizag.com/phpT/examples/formex.php Use this example as a form walkthrough. We will briefly build an HTML form, and call the form data using PHP. PHP offers several methods for achieving this goal, so feel free to substitute alternative methods as you follow along. Our example will show you a method using a single .php file, combining both PHP and HTML in one simple text file, to retrieve the data and display the results. Below is a quick review of bullets, check boxes, text fields, and input fields and using them to build a form to retrieve some personal information about our user. Step 1 is to build the form document to retrieve user date.
http://php.net/manual/en/index.php downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net s earch for in the [ edit ] Last updated: Fri, 29 Mar 2013 view this page in PHP Manual by : Mehdi Achour

PHP Manual

Всем привет. Данная статья посвящена работе с Excel документами при помощи PHP, работая с COM-объектами. Итак, приступаем.., в первую очередь нам необходимо создать COM-объект для работы с Excel: $xls = new COM ( "Excel.Application" ) ; //Создаем новый COM-объект $xls -> Application -> Visible = 1 ; //По умолчанию объект невидим, делаем его видимым $xls -> DisplayAlerts = 0 ; //Не хотим видеть ошибки http://grigorieff.ru/?p=435

COM объекты в PHP. PHP и Excel | Блог web программиста