• Bài giảng Nhập môn lập trình - Chương 1: Các khái niệm cơ bản về lập trình - Đặng Bình PhươngBài giảng Nhập môn lập trình - Chương 1: Các khái niệm cơ bản về lập trình - Đặng Bình Phương

    Bắt đầu Nhập số xe N (gồm 4 chữ số) Số thứ 4: n4 = N % 10, N = N / 10 Số thứ 3: n3 = N % 10, N = N / 10 Số thứ 2: n2 = N % 10, N = N / 10 Số thứ 1: n1 = N Số nút S = (n1 + n2+ n3 + n4) % 10 Xuất Số nút S Kết thúc

    ppt32 trang | Chia sẻ: thucuc2301 | Ngày: 24/11/2020 | Lượt xem: 643 | Lượt tải: 0

  • Project Integration Management SEII - Lecture 3Project Integration Management SEII - Lecture 3

    Change control system Change control board Key stakeholders on the board Configuration management Proper communication Possible drawbacks Time demanding 48 hour policy

    pptx26 trang | Chia sẻ: dntpro1256 | Ngày: 23/11/2020 | Lượt xem: 608 | Lượt tải: 0

  • Project Management and Information Technology Context SEII - Lecture 2Project Management and Information Technology Context SEII - Lecture 2

    Complex nature of IT projects/products Status review at each phase Phase exits / kill points Evaluate progress Potential success Compatibility with organizational goals Systems’ view Frequent reviews

    pptx21 trang | Chia sẻ: dntpro1256 | Ngày: 23/11/2020 | Lượt xem: 605 | Lượt tải: 0

  • Software Engineering II - Lecture 1Software Engineering II - Lecture 1

    Software/ software engineering IT project failure / investment Project / program Project and portfolio management Project management framework Project success factors Successful organizations and managers Suggested skills for project managers

    pptx35 trang | Chia sẻ: dntpro1256 | Ngày: 23/11/2020 | Lượt xem: 690 | Lượt tải: 0

  • CONNECTIONS: web applicationCONNECTIONS: web application

    User registration (already discussed) User login (already discussed) Send Message Inbox Out Box Sign-Out

    pptx31 trang | Chia sẻ: dntpro1256 | Ngày: 23/11/2020 | Lượt xem: 630 | Lượt tải: 0

  • Deleting and Updating Records in MySQL using PHPDeleting and Updating Records in MySQL using PHP

    Get id of the record Connect to database Retrieve record from database against the id Start form Set retrieved values as value of the input fields

    pptx32 trang | Chia sẻ: dntpro1256 | Ngày: 23/11/2020 | Lượt xem: 687 | Lượt tải: 0

  • Retrieving data from MySQL using PHPRetrieving data from MySQL using PHP

    Form for user’s input Login action page: Connection with database Retrieve user’s input Select a record from user’s table with same email and password Count the number of row in result If one row is selected then fetch its values and store in session variable, otherwise send an error message on main page

    pptx28 trang | Chia sẻ: dntpro1256 | Ngày: 23/11/2020 | Lượt xem: 702 | Lượt tải: 0

  • File uploading in PHPFile uploading in PHP

    FILES super global variable File uploading in PHP Storing reference of uploaded file in database User registration in CONNECTIONS web application with file upload

    pptx29 trang | Chia sẻ: dntpro1256 | Ngày: 23/11/2020 | Lượt xem: 663 | Lượt tải: 0

  • Database Connectivity in PHPDatabase Connectivity in PHP

    Create database Database name: connections Table name: users Table columns: user_Id int 4 User_Name text 25 User_Email varchar 35 User_Password varchar 20 User_Picture varchar 50

    pptx20 trang | Chia sẻ: dntpro1256 | Ngày: 23/11/2020 | Lượt xem: 796 | Lượt tải: 0

  • Validating user inputValidating user input

    strpos(): finds the position of the first case-sensitive occurrence of a substring in a string strpos($string,sub-string); strrpos(): finds the position of the last case-sensitive occurrence of a substring in a string strrpos($string,sub-string); substr_count(): returns the number of times one string occurs within another substr_count($stri...

    pptx30 trang | Chia sẻ: dntpro1256 | Ngày: 23/11/2020 | Lượt xem: 658 | Lượt tải: 0