Houston, we have a problem.

The PHP mail() Function


mail(to,subject,message,headers,parameters)





Валидация email адреса
FILTER_SANITIZE_EMAIL filter removes all illegal e-mail characters from a string
FILTER_VALIDATE_EMAIL filter validates value as an e-mail address


@темы: PHP, PHP mail() Function

14:51

PHP Cookies

Houston, we have a problem.

PHP Cookies



The setcookie() function is used to set a cookie.
Note: The setcookie() function must appear BEFORE the tag.

setcookie(name, value, expire, path, domain);





@темы: PHP, PHP Cookies

Houston, we have a problem.

PHP File Upload





upload_file.php




  • $_FILES["file"]["name"] - the name of the uploaded file

  • $_FILES["file"]["type"] - the type of the uploaded file

  • $_FILES["file"]["size"] - the size in bytes of the uploaded file

  • $_FILES["file"]["tmp_name"] - the name of the temporary copy of
    the file stored on the server

  • $_FILES["file"]["error"] - the error code resulting from the file
    upload



Проверка расширения файла (gif, jpeg, jpg или png)


Сохранение загруженного файла в папку на сервере




@темы: PHP, PHP File Upload

12:31

CodeIgniter

Houston, we have a problem.
CodeIgniter - популярный MVC фреймворк с открытым исходным кодом, написанный на языке программирования PHP, для разработки полноценных веб-систем и приложений.
http://ru.wikipedia.org/wiki/CodeIgniter

@темы: CodeIgniter, PHP, PHP Framework, Framework, Ссылки

Houston, we have a problem.
PHP: Objects, Patterns, and Practice / PHP. Объекты, шаблоны и методики программирования
http://rutracker.org/forum/viewtopic.php?t=4212311

Объектно-ориентированное программирование на PHP 5
http://rutracker.org/forum/viewtopic.php?t=2855114

@темы: PHP, Учебники, Ссылки

Houston, we have a problem.

PHP Date() Function



http://www.w3schools.com/php/php_date.asp

date(format,timestamp)
d - Represents the day of the month (01 to 31)
m - Represents a month (01 to 12)
Y - Represents a year (in four digits)



PHP Date() - Adding a Timestamp


The optional timestamp parameter in the date() function specifies a timestamp. If you do not specify a timestamp, the current date and time will be used.

The mktime() function returns the Unix timestamp for a date.

The Unix timestamp contains the number of seconds between the Unix Epoch (January 1 1970 00:00:00 GMT) and the time specified.

mktime(hour,minute,second,month,day,year,is_dst)



@темы: PHP, Ссылки

Houston, we have a problem.


@темы: PHP

Houston, we have a problem.

PHP обработка данных введенных пользователем


Функции
1. htmlspecialchars() (замена угловых скобок html-кода)
2. trim() (удаляет пробелы, переводы строки)
3. stripslashes() (удаляет экранирование символов обратным слэшем \)

@темы: PHP

Houston, we have a problem.
http://www.w3schools.com/php/php_superglobals.asp

The PHP superglobal variables are:
$GLOBALS
$_SERVER
$_REQUEST
$_POST
$_GET
$_FILES
$_ENV
$_COOKIE
$_SESSION


PHP $GLOBAL


$GLOBAL is a PHP super global variable which is used to access global variables from anywhere in the PHP sсript (also from within functions or methods).

PHP $_SERVER


$_SERVER is a PHP super global variable which holds information about headers, paths, and sсript locations.



Element/Code Description
$_SERVER['PHP_SELF'] Returns the filename of the currently executing sсript
$_SERVER['GATEWAY_INTERFACE'] Returns the version of the Common Gateway Interface (CGI) the server is
using
$_SERVER['SERVER_ADDR'] Returns the IP address of the host server
$_SERVER['SERVER_NAME'] Returns the name of the host server (such as www.w3schools.com)
$_SERVER['SERVER_SOFTWARE'] Returns the server identification string (such as Apache/2.2.24)
$_SERVER['SERVER_PROTOCOL'] Returns the name and revision of the information protocol (such as HTTP/1.1)
$_SERVER['REQUEST_METHOD'] Returns the request method used to access the page (such as POST)
$_SERVER['REQUEST_TIME'] Returns the timestamp of the start of the request (such as 1377687496)
$_SERVER['QUERY_STRING'] Returns the query string if the page is accessed via a query string
$_SERVER['HTTP_ACCEPT'] Returns the Accept header from the current request
$_SERVER['HTTP_ACCEPT_CHARSET'] Returns the Accept_Charset header from the current request (such as
utf-8,ISO-8859-1)
$_SERVER['HTTP_HOST'] Returns the Host header from the current request
$_SERVER['HTTP_REFERER'] Returns the complete URL of the current page (not reliable because not all
user-agents support it)
$_SERVER['HTTPS'] Is the sсript queried through a secure HTTP protocol
$_SERVER['REMOTE_ADDR'] Returns the IP address from where the user is viewing the current page
$_SERVER['REMOTE_HOST'] Returns the Host name from where the user is viewing the current page
$_SERVER['REMOTE_PORT'] Returns the port being used on the user's machine to communicate with the
web server
$_SERVER['sсript_FILENAME'] Returns the absolute pathname of the currently executing sсript
$_SERVER['SERVER_ADMIN'] Returns the value given to the SERVER_ADMIN directive in the web server
configuration file (if your sсript runs on a virtual host, it will be the value
defined for that virtual host) (such as [email protected])
$_SERVER['SERVER_PORT'] Returns the port on the server machine being used by the web server for
communication (such as 80)
$_SERVER['SERVER_SIGNATURE'] Returns the server version and virtual host name which are added to
server-generated pages
$_SERVER['PATH_TRANSLATED'] Returns the file system based path to the current sсript
$_SERVER['sсript_NAME'] Returns the path of the current sсript
$_SERVER['sсript_URI'] Returns the URI of the current page


PHP $_REQUEST


PHP $_REQUEST is used to collect data after submitting an HTML form.


PHP $_POST


PHP $_POST is widely used to collect form data after submitting an HTML form with method="post". $_POST is also widely used to pass variables.

PHP $_GET


PHP $_GET can also be used to collect form data after submitting an HTML form with method="get".

$_GET can also collect data sent in the URL.

@темы: PHP, Ссылки

Houston, we have a problem.
Создадим таблицу в БД


Файл соединения с БД db.php


Файл get-user.php получает данные из БД и возвращает из запросу


Файл index.php, с которого мы отправляем запрос


Помощь в решении http://stackoverflow.com/questions/21169924/send-ajax-get-request/

Тестовый файл


@темы: MySQL, PHP, jQuery, AJAX

Фильтрация



The first() method returns the first element of the selected elements.

The last() method returns the last element of the selected elements.

The eq() method returns an element with a specific index number of the selected elements.
Возвращает элемент из набора по его индексу (индексы начинаются с нуля)

The filter() method lets you specify a criteria. Elements that do not match the criteria are removed from the selection, and those that match will be returned.
В качестве фильтра задается селектор - тег, класс, id и тд.

The not() method returns all elements that do not match the criteria.
Tip: The not() method is the opposite of filter().

@темы: jQuery, jQuery Учебка

13:58

AngularJS

Вы и ваша работа
http://habrahabr.ru/post/209100/

@темы: Habrahabr, Ссылки

jQuery для начинающих
http://habrahabr.ru/post/38208/

@темы: jQuery, Ссылки

12:13

Bootstrap

jQuery Traversing


Наследование, отношения

Предки



  • parent()

  • parents()

  • parentsUntil()



The parent() method returns the direct parent element of the selected element
непосредственный родитель выбранного элемента

The parents() method returns all ancestor elements of the selected element, all the way up to the document's root element ()
возвращает все родительские элементы вплоть до корневого элемента html

Можно также добавить фильтрующий параметр, на котором выборка будет останавливаться (включительно)


The parentsUntil() method returns all ancestor elements between two given arguments.
Получает все родительские элементы до того, который указан в качестве параметра, но не включая его.


Дочерние элементы



  • children()

  • find()



The children() method returns all direct children of the selected element.
Возвращает все дочерние элементы выбранного элемента первого уровня (на нижние уровни не идет)

Также можно добавить фильтрующий параметр


The find() method returns descendant elements of the selected element, all the way down to the last descendant.
Возвращает все дочерние элементы
http://jsfiddle.net/hrCfh/11/
http://jsfiddle.net/hrCfh/

Siblings - Сестринские элементы



  • siblings()

  • next()

  • nextAll()

  • nextUntil()

  • prev()

  • prevAll()

  • prevUntil()



The siblings() method returns all sibling elements of the selected element.
http://jsfiddle.net/hrCfh/11/

Можно добавить фильтрующий параметр

http://jsfiddle.net/hrCfh/14/

The next() method returns the next sibling element of the selected element.
http://jsfiddle.net/hrCfh/15/

The nextAll() method returns all next sibling elements of the selected element.
http://jsfiddle.net/hrCfh/17/

В метод nextAll можно добавить фильтрацию
http://jsfiddle.net/hrCfh/18/

The nextUntil() method returns all next sibling elements between two given arguments.
http://jsfiddle.net/hrCfh/19/

The prev(), prevAll() and prevUntil() methods work just like the methods above but with reverse functionality: they return previous sibling elements (traverse backwards along sibling elements in the DOM tree, instead of forward).

@темы: jQuery, jQuery Учебка, Ссылки

Houston, we have a problem.
HTML


jQuery


http://jsfiddle.net/D2Unk/7/

@темы: jQuery, Ссылки

jQuery Dimension Methods

jQuery has several important methods for working with dimensions:


  • width()

  • height()

  • innerWidth()

  • innerHeight()

  • outerWidth()

  • outerHeight()



Query width() and height() Methods
The width() method sets or returns the width of an element (includes NO padding, border, or margin).

The height() method sets or returns the height of an element (includes NO padding, border, or margin).

jQuery innerWidth() and innerHeight() Methods
The innerWidth() method returns the width of an element (includes padding).

The innerHeight() method returns the height of an element (includes padding).

jQuery outerWidth() and outerHeight() Methods
The outerWidth() method returns the width of an element (includes padding and border).

The outerHeight() method returns the height of an element (includes padding and border).

The outerWidth(true) method returns the width of an element (includes padding, border, and margin).

The outerHeight(true) method returns the height of an element (includes padding, border, and margin).

@темы: jQuery, jQuery Учебка