Cargando…

AJAX and PHP : building modern web applications /

Annotation

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Brinzarea, Bogdan
Otros Autores: Hendix, Audra, Darie, Cristian
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Birmingham, UK : Packt Pub., ©2009.
Edición:2nd ed.
Colección:From technologies to solutions.
Temas:
Acceso en línea:Texto completo

MARC

LEADER 00000cam a2200000 a 4500
001 KNOVEL_ocn670583535
003 OCoLC
005 20231027140348.0
006 m o d
007 cr cnu---unuuu
008 101019s2009 enka eo 000 0 eng d
040 |a N$T  |b eng  |e pn  |c N$T  |d E7B  |d YDXCP  |d OCLCQ  |d SNK  |d OCLCQ  |d DEBSZ  |d OCLCQ  |d N$T  |d OCLCO  |d TUU  |d KNOVL  |d OCLCF  |d NLGGC  |d KNOVL  |d COO  |d C6I  |d OCLCQ  |d AZK  |d AGLDB  |d MOR  |d PIFAG  |d OCLCQ  |d U3W  |d STF  |d WRM  |d VTS  |d COCUF  |d NLE  |d INT  |d VT2  |d OCLCQ  |d UKCRE  |d UKBTH  |d AJS  |d OCLCQ  |d OCLCO  |d OCLCQ 
019 |a 650988009  |a 712995549  |a 764546680  |a 961500481  |a 962569152  |a 988435050  |a 991977972  |a 1037719131  |a 1038583659  |a 1153450198 
020 |a 9781847197733  |q (electronic bk.) 
020 |a 1847197736  |q (electronic bk.) 
020 |a 9781621988915  |q (electronic bk.) 
020 |a 1621988910  |q (electronic bk.) 
020 |z 9781847197726 
020 |z 1847197728 
029 1 |a AU@  |b 000051429510 
029 1 |a AU@  |b 000054176332 
029 1 |a DEBBG  |b BV043166914 
029 1 |a DEBSZ  |b 372798020 
029 1 |a DEBSZ  |b 421691816 
029 1 |a NZ1  |b 13869132 
035 |a (OCoLC)670583535  |z (OCoLC)650988009  |z (OCoLC)712995549  |z (OCoLC)764546680  |z (OCoLC)961500481  |z (OCoLC)962569152  |z (OCoLC)988435050  |z (OCoLC)991977972  |z (OCoLC)1037719131  |z (OCoLC)1038583659  |z (OCoLC)1153450198 
037 |b 01201872 
050 4 |a TK5105.8885.A52  |b B75 2009eb 
072 7 |a JNF  |x 000000  |2 bisacsh 
082 0 4 |a 006.76  |2 22 
049 |a UAMI 
100 1 |a Brinzarea, Bogdan. 
245 1 0 |a AJAX and PHP :  |b building modern web applications /  |c Bogdan Brinzarea, Cristian Darie, Audra Hendix. 
246 3 0 |a Building modern web applications 
250 |a 2nd ed. 
260 |a Birmingham, UK :  |b Packt Pub.,  |c ©2009. 
300 |a 1 online resource (iv, 294 pages) :  |b color illustrations 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
347 |a data file 
490 1 |a From technologies to solutions 
588 0 |a Print version record. 
520 8 |a Annotation  |b AJAX enables interactive interfaces that can replace traditional user interfaces. Enhance the user experience of your PHP website using AJAX with this practical and friendly tutorial! This book is the most efficient resource you can get to enter the exciting world of AJAX with PHP. Based on numerous examples and detailed case studies, this AJAX with PHP tutorial will build your foundation knowledge for creating faster, better web applications.<br /><br />Detailed description<br />The best AJAX tutorial for PHP developers has been completely rewritten to be your friendly guide to modern Web 2.0 development techniques! AJAX and PHP: Building Modern Web Applications, 2nd Edition covers every significant aspect of creating and maintaining AJAX and PHP applications.<br /><br />This book will teach you how to use PHP, JavaScript, MySQL and jQuery to build modern, responsive web applications. After building a strong foundation, the book will walk you through numerous real-world case studies covering techniques you_ll be likely to need for your own applications:<br /><br />* Learn how to write unobtrusive, degradable, portable, SEO-friendly AJAX code<br />* Understand the object-oriented model of JavaScript and JSON<br />* Learn how to use the jQuery JavaScript library by going through two complete case studies<br />* Debug your AJAX and PHP code using modern tools<br />* Assess the security implications of writing AJAX code and avoid security risks such as cross-site scripting<br />* Learn advanced AJAX and PHP patterns and techniques such as predictive fetching, progress indicator, graceful degradation, cross-domain calls, and more<br />* Understand the complete client-server mechanism by going through complete, step-by-step case studies, including AJAX Form Validation, and AJAX Online Chat and AJAX Editable DataGrid with jQuery. 
505 0 |a Cover; Copyright; Credits; About the Authors; About the Reviewer; Table of Contents; Preface; Chapter 1: The World of AJAX and PHP; The big picture; AJAX and Web 2.0; Building websites since 1990; HTTP and HTML; PHP and other server-side technologies; JavaScript and other client-side technologies; What's missing?; The world of AJAX; What is AJAX made of?; Uses and Misuses of AJAX; Resources and tools; Setting up your environment; Building a simple application with AJAX and PHP; Summary; Chapter 2: JavaScript and the AJAX Client; JavaScript and the Document Object Model 
505 8 |a JavaScript events and the DOMEven more DOM; JavaScript, DOM, and CSS; Using the XMLHttpRequest object; Creating the XMLHttp Request object; JavaScript exception handling; Creating better objects for Internet Explorer 6; Initiating server requests using XMLHttp Request; Handling server response; Working with XML structures; Handling more errors and throwing exceptions; Creating XML structures; Summary; Chapter 3: Object Oriented JavaScript; Why is OOP in JavaScript important?; Object-oriented programming concepts; Encapsulation; Inheritance; Polymorphism 
505 8 |a Object-oriented programming with JavaScript JavaScript objects are dictionaries; JavaScript functions; JavaScript functions are first-class objects; Inner functions; Closures; JavaScript classes; Constructors; Class diagrams; Referencing external functions; Prototype objects; Instance methods and properties; Static methods and properties; Private members; The JavaScript execution context; var x, this.x, and x; Using the right context; JavaScript OOP in practice: Introducing JSON; JSON concepts; A simple JSON example; Summary; Chapter 4: Using PHP and MySQL on the Server; PHP, DOM, and XML 
505 8 |a PHP and JSONPassing parameters and handling PHP errors; Working with MySQL; Creating database tables; Manipulating data; Connecting to your database and executing queries; Summary; Chapter 5: AJAX Form Validation; Implementing AJAX form validation; XMLHttp Request, version 2; Implementing the AJAX form validation; Summary; Chapter 6: Debugging and Profiling AJAX Applications; Debugging and profiling with Internet Explorer; Enabling debugging in Internet Explorer 6 and 7; Debugging in Internet Explorer 8; Other Internet Explorer debugging tools; Debugging and profiling with Firefox; Firebug 
505 8 |a Venkman JavaScript debugger Web Developer; Summary; Chapter 7: Advanced Patterns and Techniques; Predictive fetching pattern; Progress indicator pattern; Unobtrusive JavaScript; Progressive enhancement and graceful degradation; Asynchronous file upload with AJAX; HTTP and how file upload works; Iframe for asynchronous file upload with AJAX; Cross-domain calls; Cross-domain calls using a server proxy; Cross-domain calls using Flash; Cross-domain calls using iframes; Cross-domain calls using JSONP; Cross-site request forgery; JSON hijacking; Mitigations; Cross-site scripting; Exploits 
590 |a Knovel  |b ACADEMIC - Software Engineering 
650 0 |a Ajax (Web site development technology) 
650 0 |a JavaScript (Computer program language) 
650 0 |a PHP (Computer program language) 
650 0 |a Web site development. 
650 6 |a Ajax (Technologie de développement de sites Web) 
650 6 |a JavaScript (Langage de programmation) 
650 6 |a PHP (Langage de programmation) 
650 6 |a Sites Web  |x Développement. 
650 7 |a JUVENILE NONFICTION  |x General.  |2 bisacsh 
650 7 |a Ajax (Web site development technology)  |2 fast  |0 (OCoLC)fst01740126 
650 7 |a JavaScript (Computer program language)  |2 fast  |0 (OCoLC)fst00982071 
650 7 |a PHP (Computer program language)  |2 fast  |0 (OCoLC)fst01049847 
650 7 |a Web site development.  |2 fast  |0 (OCoLC)fst01173243 
700 1 |a Hendix, Audra. 
700 1 |a Darie, Cristian. 
776 0 8 |i Print version:  |a Brinzarea-Iamandi, Bogdan.  |t AJAX and PHP.  |b 2nd ed.  |d Birmingham, UK : Packt Publishing, ©2009  |z 9781847197726  |w (OCoLC)607690639 
830 0 |a From technologies to solutions. 
856 4 0 |u https://appknovel.uam.elogim.com/kn/resources/kpAJAXPHP9/toc  |z Texto completo 
938 |a ebrary  |b EBRY  |n ebr10430364 
938 |a EBSCOhost  |b EBSC  |n 333464 
938 |a YBP Library Services  |b YANK  |n 3518128 
994 |a 92  |b IZTAP