Zend PHP 7

Recent Posts

  • Zend PHP 7 Certification - Web Features - HTTP Headers and Code

    This post covers the HTTP Headers and Code section of the Web Features chapter when studying for the Zend PHP 7 Certification. HTTP is a protocol used for transferring data between web servers and client browsers. The header() function in PHP sends a raw HTTP header. There are two special-case header calls. The first is…

    View Post »

  • Zend PHP 7 Certification - Web Features - Cookies

    This post covers the Cookies section of the Web Features chapter when studying for the Zend PHP 7 Certification. Cookies are a mechanism for storing data in the remote browser and tracking or identifying return users. You can set cookies in PHP using the setcookie() or setrawcookie() function. Cookies are part of the HTTP header,…

    View Post »

  • Zend PHP 7 Certification - Web Features - Forms

    This post covers the Forms section of the Web Features chapter when studying for the Zend PHP 7 Certification. One of the most powerful features of PHP is the way it handles HTML forms. The basic concept that is important to understand is that any form element will automatically be available to your PHP scripts.…

    View Post »