PHP

TwitterFacebook
Get flash to fully experience Pearltrees
For the mail functions to be available, PHP requires an installed and working email system. The program to be used is defined by the configuration settings in the php.ini file. http://www.w3schools.com/php/php_ref_mail.asp

PHP Mail Functions

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.phpfreecode.com/ So here we go again! PHP, one of the strongest languages in the whole web design world! If you know how to use it you have the power. Here we have PHP codes and scripts where you can easily use it on your websites! You need best web host that supports this language. Before choosing one you can go through reviews of reliable low cost web hosting providers.

PHP Best Codes

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.

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 | links | conferences | my php.net add a note User Contributed Notes PHP Manual

PHP Manual - Manual

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

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