Knowledge Nexus
Knowledge Nexus
  • 63
  • 12 934
Lecture 2 Google Webmaster Tool | Website Registration on Google Search Engine | FileZilla |Cute FTP
Google Search Central provides SEO resources to help you get your website on Google Search. Google Webmaster Tools - now Google Search Console - is a free tool by Google that allows users to check how their website is performing in the search results and whether it experiences any issues that can affect that performance.
To set up Webmaster Tools, visit www.google.com/webmasters/tools and sign in with your Google account - preferably the same one you use for GA. Click 'Add a Site'. Enter your site's URL. Next, you'll need to verify that the site is yours.
มุมมอง: 17

วีดีโอ

Lecture 1 Search Engine Optimization | on-page SEO | off-page SEO | onsite SEO | offsite SEO
มุมมอง 2716 ชั่วโมงที่ผ่านมา
What SEO Is? Search Engine Optimization refers to the collection of techniques and practices that allow a site to get more traffic from search engines (Google, Yahoo, Microsoft). SEO can be divided into two main areas: off-page SEO (work that takes place separate from the website) and on-page SEO (website changes to make your website rank better). This tutorial will cover both areas in detail! ...
Lecture 8 PHP String Handling functions|Strpos|Strreplace|Substrreplace|Capitilization|Explode implo
มุมมอง 3921 ชั่วโมงที่ผ่านมา
PHP - String Position - strpos Being able to manipulate strings is a valuable skill, especially in PHP. You'll most likely come across a programming problem that requires you to find some data in a string. The beginning of a lot of your string manipulation expertise will begin with the strpos function, which allows you to find data in your string. The way strpos works is it takes some string yo...
Tizag Tutorials Lecture 9 PHP Date(), Time() and Now() Functions | Session in PHP | Cookies in PHP
มุมมอง 2521 ชั่วโมงที่ผ่านมา
PHP Date Function While PHP's date() function may seem to have an overwhelming amount of options available, isn't it always better to have more choices than not enough? With PHP's date function, you format timestamps, so they are more human-readable. PHP Date - The Timestamp The date function always formats a timestamp, whether you supply one or not. What's a timestamp? Good question! Timestamp...
Tizag Tutorials Lecture 7 PHP File handling |fopen |fread |fwrite |fclose |truncate |file upload
มุมมอง 31วันที่ผ่านมา
PHP - Files Handling Manipulating files is a basic necessity for serious programmers and PHP gives you a great deal of tools for creating, uploading, and editing files. This section of the PHP tutorial is completely dedicated to how PHP can interact with files. After completing this section you should have a solid understanding of all types of file manipulation in PHP!. PHP - Files: Be Careful ...
W3Schools Tutorials Lecture 5 PHP Arrays | Index | Associative | Sorting Arrays
มุมมอง 27วันที่ผ่านมา
#learnhtml5andcss3 #coding #viralvideo #howtocreateawebsiteusinghtmlandcss #programming #viralvideo #shorts #ytshort
W3Schools Tutorials Lecture 6 PHP Super Global Variables | GLOBALS | SERVER |REQUEST| POST|GET|REGEX
มุมมอง 45วันที่ผ่านมา
PHP Global Variables - Superglobals Some predefined variables in PHP are "superglobals", which means that they are always accessible, regardless of scope - and you can access them from any function, class or file without having to do anything special. The PHP superglobal variables are: $GLOBALS $_SERVER $_REQUEST $_POST $_GET $_FILES $_ENV $_COOKIE $_SESSION Global Variables Global variables ar...
W3Schools Tutorials Lecture 4 PHP Loops | For While | Do While | Foreach Loops | Functions
มุมมอง 17วันที่ผ่านมา
PHP Loops Often when you write code, you want the same block of code to run over and over again a certain number of times. So, instead of adding several almost equal code lines in a script, we can use loops. Loops are used to execute the same block of code again and again, as long as a certain condition is true. In PHP, we have the following loop types: while - loops through a block of code as ...
W3Schools Tutorials Lecture 3 PHP Constants|Magic Constants|Operators Conditional |Switch Statements
มุมมอง 15วันที่ผ่านมา
Constants are like variables, except that they cannot be changed or undefined once they are defined. A constant is an identifier (name) for a simple value. The value cannot be changed during the script. A valid constant name starts with a letter or underscore (no $ sign before the constant name). Note: Unlike variables, constants are automatically global across the entire script. PHP has nine p...
W3Schools Tutorials Lecture 2 PHP | Data types | Strings | Numbers | Type Casting|PHP Math functions
มุมมอง 3214 วันที่ผ่านมา
Variables can store data of different types, and other data types can do various things. PHP supports the following data types: String Integer Float (floating point numbers - also called double) Boolean Array Object NULL Resource You can get the data type of any object by using the var_dump() function. A string is a sequence of characters, like "Hello world!". A string can be any text inside qu...
W3Schools Tutorials Lecture 1 PHP Introduction | Installation | Syntax | Comments | Variables | Echo
มุมมอง 3614 วันที่ผ่านมา
PHP is a server scripting language and a powerful tool for making dynamic and interactive Web pages. PHP is a widely used, free, and efficient alternative to competitors like Microsoft's ASP. PHP is an acronym for "PHP: Hypertext Preprocessor". PHP is a widely used, open-source scripting language. PHP scripts are executed on the server. PHP is free to download and use. It is powerful enough to ...
W3Schools Tutorials Lecture 12 HTML5 Web Form|Form Attributes|Elements |Input Types|Input Attributes
มุมมอง 3214 วันที่ผ่านมา
An HTML form is used to collect user input. The user input is most often sent to a server for processing. The action attribute defines the action to be performed when the form is submitted. Usually, the form data is sent to a file on the server when the user clicks the submit button. If the action attribute is omitted, the action is set to the current page. The target attribute specifies where ...
W3Schools Tutorials Lecture 13 HTML5 Media Tags | Video Tag | Audio Tag | Plugin |Play Youtube Video
มุมมอง 1414 วันที่ผ่านมา
Multimedia on the web is sound, music, videos, movies, and animations. Multimedia comes in many different formats. It can be almost anything you can hear or see, like images, music, sound, videos, records, films, animations, and more. Web pages often contain multimedia elements of different types and formats. There are many video formats out there. The MP4, WebM, and Ogg formats are supported b...
W3Schools Tutorials Lecture 11 HTML5 Block and Inline Display | Div Tag | Class vs ID | iframe
มุมมอง 1214 วันที่ผ่านมา
Every HTML element has a default display value, depending on what type of element it is. The two most common display values are block and inline. A block-level element always starts on a new line, and the browsers automatically add some space (a margin) before and after the element. A block-level element always takes up the full width available (stretches out to the left and right as far as it ...
W3Schools Tutorials Lecture 10 HTML5 List | types of List | Ordered List | Unordered List | DL List
มุมมอง 1421 วันที่ผ่านมา
W3Schools Tutorials Lecture 10 HTML5 List | types of List | Ordered List | Unordered List | DL List
W3Schools Tutorials Lecture 9 HTML5 Tables | Table Border | Table Sizes | Table Headers | Padding
มุมมอง 1621 วันที่ผ่านมา
W3Schools Tutorials Lecture 9 HTML5 Tables | Table Border | Table Sizes | Table Headers | Padding
W3Schools Tutorials Lecture 8 HTML5 Images|Image Map|Background Images|Picture Element|Favicon|Title
มุมมอง 2221 วันที่ผ่านมา
W3Schools Tutorials Lecture 8 HTML5 Images|Image Map|Background Images|Picture Element|Favicon|Title
W3Schools Tutorials Lecture 7 HTML5 Links | Hyperlinks | Types of Hyperlinks | Anchor Tag
มุมมอง 2421 วันที่ผ่านมา
W3Schools Tutorials Lecture 7 HTML5 Links | Hyperlinks | Types of Hyperlinks | Anchor Tag
W3Schools Tutorials Lecture 6 HTML5 Cascading Style Sheet | External CSS | Internal CSS | Inline CSS
มุมมอง 1921 วันที่ผ่านมา
W3Schools Tutorials Lecture 6 HTML5 Cascading Style Sheet | External CSS | Internal CSS | Inline CSS
W3Schools Tutorials Lecture 5 HTML5 Web Application Color Schemes | RGB | HEX | HSL | Generic Colors
มุมมอง 2521 วันที่ผ่านมา
W3Schools Tutorials Lecture 5 HTML5 Web Application Color Schemes | RGB | HEX | HSL | Generic Colors
W3Schools Tutorials Lecture 4 HTML5 Formatting | Quotations | Comments
มุมมอง 1921 วันที่ผ่านมา
W3Schools Tutorials Lecture 4 HTML5 Formatting | Quotations | Comments
W3Schools Tutorials Lecture 3 HTML5 Basics Elements | Attributes | Headings | Paragraphs | Styles
มุมมอง 2621 วันที่ผ่านมา
W3Schools Tutorials Lecture 3 HTML5 Basics Elements | Attributes | Headings | Paragraphs | Styles
W3Schools Tutorials Lecture 2 HTML5 Introduction | Writing first web page | Web page Editors
มุมมอง 2521 วันที่ผ่านมา
W3Schools Tutorials Lecture 2 HTML5 Introduction | Writing first web page | Web page Editors
W3Schools Tutorials Lecture 1 HTML5 Web Applications Development | Course outline | Course Overview
มุมมอง 4421 วันที่ผ่านมา
W3Schools Tutorials Lecture 1 HTML5 Web Applications Development | Course outline | Course Overview

ความคิดเห็น