Thông báo

Collapse
No announcement yet.

Sổ tay KSXD (hothot)

Collapse
X
 
  • Lọc
  • Giờ
  • Show
Clear All
new posts

  • Sổ tay KSXD (hothot)

    Civil Engineering Formulas

    Password: No password
    Description: No description
    Total size, mb: 2.170



    down:
    http://www.easy-sharing.com/341317/C...mulas.rar.html
    Last edited by hieunghi; 27-03-2006, 11:51 PM. Lý do: Link die?

  • #2
    Ðề: Sổ tay KSXD (hothot)

    goi len day hoc email: doanxd@gmail.com toi se post len cho
    pro support Structure and consultaning: STAAD.Pro, ETABS, SAFE, TEKLA, ADT, Revit structure: Skype nick name: doan.vn

    Ghi chú


    • #3
      Ðề: Sổ tay KSXD (hothot)

      Nguyên văn bởi hieunghi
      Civil Engineering Formulas

      Password: No password
      Description: No description
      Total size, mb: 2.170



      down:
      http://www.megaupload.com/tr/?d=FWRQQWDO
      link die rồi bạn ơi. gửi cho admin để họ post cho.

      Ghi chú


      • #4
        Ðề: Sổ tay KSXD (hothot)

        nên đăng ký tài khoản free để chia sẻ file cho dễ dàng tại box.net.
        Hoàng Sa, Trường Sa trong trái tim tôi.

        Ghi chú


        • #5
          Ðề: Sổ tay KSXD (hothot)

          Theo yêu cầu, pót lại cho Anh em


          Nếu muốn có 1GB free trên boxnet để lưu trữ, chia sẻ (không bao giờ bị xoá). Đăng ký:
          http://www.box.net/signup/invitation...mailinator.com

          Ghi chú


          • #6
            Ðề: Sổ tay KSXD (hothot)

            Mình chưa rõ file có đuôi.PHP thì nên mở bằng chương trình gi?

            Ghi chú


            • #7
              Ðề: Sổ tay KSXD (hothot)

              Nguyên văn bởi nguyenngoc74
              Mình chưa rõ file có đuôi.PHP thì nên mở bằng chương trình gi?

              PHP mở bằng trình duyệt bình thượng

              Tham khảo:

              PHP was originally designed as a small set of Perl scripts, followed by a rewritten set of CGI binaries written in C by the Danish-Canadian programmer Rasmus Lerdorf in 1994 to display his résumé and to collect certain data, such as how much traffic his page was receiving. "Personal Home Page Tools" was publicly released on June 8 1995 after Lerdorf combined it with his own Form Interpreter to create PHP/FI.[1]

              Zeev Suraski and Andi Gutmans, two Israeli developers at the Technion - Israel Institute of Technology, rewrote the parser in 1997 and formed the base of PHP 3, changing the language's name to the recursive initialism "PHP: Hypertext Preprocessor". The development team officially released PHP/FI 2 in November 1997 after months of beta testing. Public testing of PHP 3 began immediately and the official launch came in June 1998. Suraski and Gutmans then started a new rewrite of PHP's core, producing the Zend engine in 1999.[2] They also founded Zend Technologies in Ramat Gan, Israel, which is actively involved with PHP development.

              In May 2000, PHP 4, powered by the Zend Engine 1.0, was released.

              On July 13 2004, PHP 5 was released, powered by Zend Engine II. PHP 5 includes new features such as PHP Data Objects and more performance enhancements taking advantage of the new engine.

              [edit]
              Usage
              PHP generally runs on a web server, taking PHP code as its input and creating Web pages as output.

              When running server-side, the PHP model can be seen as an alternative to Microsoft's ASP.NET system, Adobe's ColdFusion, Sun Microsystems' JSP, Zope, mod_perl and the Ruby on Rails framework. To more directly compete with the "framework" approach taken by these systems, Zend is working on the Zend Framework - an emerging (as of June 2006) set of PHP building blocks and best practices.

              The LAMP architecture has become popular in the Web industry as a way of deploying inexpensive, reliable, scalable, secure web applications. PHP is commonly used as the P in this bundle alongside Linux, Apache and MySQL. PHP can be used with a large number of relational database management systems, runs on all of the most popular web servers and is available for many different operating systems. This flexibility means that PHP has a wide installation base across the Internet; PHP is one of the most popular programming languages for implementing websites, with over 20 million Internet domains using PHP.[3]

              Examples of popular server-side PHP applications include phpBB, Joomla, Wordpress and MediaWiki.

              PHP also provides a command line interface, as well as bindings to GUI libraries such as GTK+ and text mode libraries like ncurses in order to facilitate development of a broader range of software. It is increasingly used on the command line for tasks which have traditionally been the domain of Perl or shell scripting.

              [edit]
              Syntax
              PHP primarily acts as a filter which takes a file containing text and special PHP instructions and converts it to another form for display.

              Here is a Hello World code example:

              <?php
              echo 'Hello, World!';
              ?>
              The <?php ?> tags are delimiters which tell PHP to treat anything contained within as PHP code and to act on it.

              A slightly less verbose "Hello World" program in PHP is:

              <?= 'Hello, World!'?>
              This example relies on PHP's 'short_open_tag' option being set to true. This may cause other problems in certain data — the character sequence <? is used to signify the start of other processing instructions such as the XML <?xml version="1.0" ?> header statement.

              PHP ignores any text outside of its delimiter tags. Thus, the examples above are equivalent to the following text (and indeed are converted into this form):

              Hello, World!
              The primary use of this is to allow PHP statements to be embedded within HTML documents. PHP processes any delimited code in the page initially, thus handing the web server a file which consists entirely of HTML.

              Variables are prefixed with a dollar symbol and no type need be specified in advance. Variables are, subject to certain rules, evaluated in a string context.

              PHP treats new lines as whitespace, in the manner of a free-form language (except when inside string quotes). Statements are terminated by a semicolon, except in a few special cases.

              PHP has three types of comment syntax: it allows multi-line comments using the /* */ construction as in C, and also allows comments which terminate at the end of the line using the // and # characters (as in C++ and Perl respectively).

              [edit]
              Data types
              PHP stores whole numbers in a platform-dependent range. This range is typically that of 32-bit signed integers. Portable code should not assume that values outside this range can be represented in an integer variable. Integer variables can be assigned using decimal (positive and negative), octal and hexadecimal notations. Real numbers are also stored in a platform-specific range. They can be specified using floating point notation, or two forms of Scientific notation.

              PHP has a native Boolean type, named "boolean", similar to the native Boolean types in Java and C++. Using the Boolean type conversion rules, non-zero values can be intepreted as true and zero as false, as in Perl and C.

              The Null data type represents a variable that has no value. The only value in the Null data type is NULL.

              Arrays are heterogeneous, meaning a single array can contain objects of more than one type. They can contain any type that PHP can handle, including resources, objects, and even other arrays. Order is preserved in lists of values and in hashes with both keys and values, and the two can be intermingled.

              Variables of type "resource" represent references to resources from external sources. These are typically created by functions from a particular extension, and can only be processed by functions from the same extension. Examples include file, image and database resources.

              [edit]
              Objects
              Up until version 3, PHP had no object-oriented features. Basic object functionality was added in version 3. The same semantics were implemented in PHP 4 as well as pass-by-reference and return-by-reference for objects but the implementation still lacked the powerful and useful features of other object-oriented languages like C++ and Java.

              PHP's handling of objects was completely rewritten for PHP 5, allowing for better performance and more features. In previous versions of PHP, objects were handled like primitive types. The drawback of this method was that semantically the whole object was copied when a variable was assigned, or passed as a parameter to a method. In the new approach, objects are referenced by handle, and not by value. PHP 5 introduced private and protected member variables and methods, along with abstract classes and abstract methods. It also introduced a standard way of declaring constructor and destructors similar to that of other object-oriented languages, such as C++.

              PHP 4 had no exception handling. PHP 5 introduces an exception model similar to that of other programming languages.

              The static method and class variable features in Zend Engine 2 do not work the way some expect. There is no virtual table feature in the Engine, so the static variables are bound with a name at compile time instead of with a reference.

              If the developer asks to create a copy of an object by using the reserved word clone, the Zend engine will check if a __clone() method has been defined or not. If not, it will call a default __clone() which will copy all of the object's properties. If a __clone() method is defined, then it will be responsible to set the necessary properties in the created object. For convenience, the engine will supply a function that imports all of the properties from the source object, so that they can start with a by-value replica of the source object, and only override properties that need to be changed.

              [edit]
              Resources
              [edit]
              Libraries
              Main article: List of PHP libraries
              PHP includes a large number of free and open-source libraries with the core build. PHP is a fundamentally Internet-aware system with modules built in for accessing FTP servers, many database servers, embedded SQL libraries like embedded MySQL and SQLite, LDAP servers, and others. Many functions familiar to C programmers such as the printf family are available in the standard PHP build.

              PHP extensions exist which, among other features, add support for the Windows API, process management on Unix-like operating systems, cURL, and several popular compression formats. Some of the more unusual features are on-the-fly Adobe Flash generation, integration with Internet relay chat, and generation of dynamic images (where the content of the image can be changed). Some additional extensions are available via the PHP Extension Community Library.

              [edit]
              Source code encoders
              Encoders offer some source code security and enable proprietary software by hindering source code reverse engineering. PHP scripts are compiled into native byte-code. The downside of this approach is that a special extension has to be installed on the server in order to run encoded scripts.

              [edit]
              Support
              PHP has a formal development manual that is maintained by the open source community. In addition, answers to most questions can often be found by doing a simple internet search. PHP users assist each other through various media such as chat, forums, newsgroups and PHP developer web sites. In turn, the PHP development team actively participates in such communities, garnering assistance from them in their own development effort (PHP itself) and providing assistance to them as well. There are many help resources available for the novice PHP programmer.

              [edit]
              Criticism
              Criticisms of PHP include those general criticisms ascribed to other scripting programming languages and dynamically typed languages. Some specific criticisms of PHP include the following:

              PHP does not have native support for Unicode or multibyte strings, making internationalization of PHP software difficult.
              PHP does not enforce the declaration of variables prior to their use, and variables which have not been initialized can have operations (such as concatenation) performed on them; an operation on an uninitialized variable raises an E_NOTICE level error, but this is hidden by default.
              PHP's type checking is so loose as to be occasionally unenforceable. Variables in PHP are not limited to one type. It is possible to assign an integer value to the variable $Q, then assign a string value, and then assign an array to it. This can often lead to difficult-to-debug code. Type checking using the == operator is not strict, necessitating the === operator to ensure a type match. Functions are also not allowed to (directly) force the types of their arguments (PHP 5 improves on this, by adding the ability to force a function argument to be an array or an object of a certain class). Some functions have inconsistent output, with functions intended to return Boolean FALSE also returning non-Boolean values which evaluate to FALSE, such as 0 or "".
              PHP has no namespace support, with all PHP functions sharing the same global namespace.
              The standard function library lacks internal consistency. A significant number of functions perform the same actions, but with slightly different input or results or syntax. There is little internal consistency regarding function argument order. Functions have no standard naming convention, with variant uses of underscores in names, verb/noun ordering and reference to parent libraries.
              PHP contains a "magic quotes" feature which inserts backslashes into user input strings. The feature was introduced to prevent code written by beginners from being dangerous (such as in SQL injection attacks), but some criticize it for frequently causing improperly displayed text or encouraging beginners to write PHP which is vulnerable to injection attacks when used on a system with it turned off.
              If 'register_globals' is enabled in PHP's configuration file, PHP automatically puts the values of Post, Get, Cookie and Session Parameters into standard variables, which can be a significant security risk for scripts that assume those variables are undefined.[4]
              Many shared web hosts offer PHP support with mod_php, running PHP scripts as the web server user, which can make file security in a shared hosting environment difficult. PHP's "Safe Mode" can emulate the security behavior of the OS to partially overcome this problem and impose restrictions on file handling functions.
              Some PHP extensions use libraries that are not threadsafe, so rendering with Apache 2's Multi-Processing Module or Microsoft's IIS in ISAPI mode may cause crashes.[5]

              Ghi chú


              • #8
                Ðề: Sổ tay KSXD (hothot)

                Cám ơn bạn rất nhiều!
                Đây đúng là cuốn sách tôi đã tìm lâu nay mà chưa được, nó giúp ích cho tôi rất nhiều.
                Link rất tốt:
                Theo yêu cầu, pót lại cho Anh em
                Trích:
                http://www.box.net/public/zcilyhzqav

                Tuyệt

                Ghi chú


                • #9
                  Ðề: Sổ tay KSXD (hothot)

                  Cám ơn Bác nhiều đang đợi cuốn khác của Bác

                  Ghi chú


                  • #10
                    Ðề: Sổ tay KSXD (hothot)

                    Cám ơn Bác nhiều đang đợi cuốn khác của Bác

                    Ghi chú


                    • #11
                      Ðề: Sổ tay KSXD (hothot)

                      cam on cac ban, minh se dung thu tai lieu nay

                      Ghi chú


                      • #12
                        Ðề: Sổ tay KSXD (hothot)

                        bác nào có bản tiếng Việt ko a? up cho anh em xem với!

                        Ghi chú


                        • #13
                          Ðề: Sổ tay KSXD (hothot)

                          bác nào có sổ tay kết cấu vũ mạnh hùng cho mình xin nha!cám ơn nha

                          Ghi chú


                          • #14
                            Ðề: Sổ tay KSXD (hothot)

                            Nguyên văn bởi tri1111 View Post
                            bác nào có sổ tay kết cấu vũ mạnh hùng cho mình xin nha!cám ơn nha
                            Mail cho minh thuandong@gmail.com

                            Ghi chú


                            • #15
                              Ðề: Sổ tay KSXD (hothot)

                              cảm ơn bác nhiều lắm.Anh em hãy tiếp tục phát huy tinh thần của người Việt!

                              Ghi chú

                              casino siteleri bahis siteleri
                              erotik film izle Rus escort gaziantep rus escort
                              deneme bonusu veren siteler deneme bonusu deneme bonusu veren siteler
                              bahis siteleri
                              bahisnow giri? casinoslot sultanbet giri? grandpashabet giri?
                              hd sex video
                              Mobilbahis
                              antalya escort bayan
                              gaziantep escort
                              betpas gncel link
                              gaziantep escort
                              bonus veren siteler
                              pinbahis pinbahis dizitune.com
                              bostanci escort pendik escort
                              ?stanbul Escort
                              Car Fuck XXX ????? ???????? ?????? ? ???? ????? sexo gay gratis xxxx
                              betbonusking.com deneme bonusu
                              deneme bonusu veren siteler deneme bonusu veren siteler bonus veren siteler
                              gvenilir casino siteleri
                              Kacak iddaa Siteleri
                              mraniye escort sancaktepe escort
                              quixproc.com
                              Working...
                              X