Show the URL for the first location.

Slides:



Advertisements
Similar presentations
HINARI – Access Problems and Solutions. Full-text Article Access Problems Using the Journals by title A-Z list, we are attempting to access a full-text.
Advertisements

In this lecture, you will learn: ❑ How to link between pages of your site ❑ How to link to other sites ❑ How to structure the folders on your web site.
Collections Management Museums EMu – Data Cleaning with EMu Data Cleaning with EMu Warren Hindley.
Warm Up: How do you get to know someone?.  Speech: What does the character say? How does the character speak?  Thoughts: What is revealed through the.
Creating an interactive product Introduction and Success Criteria
PUNCTUATION MARKS ETC. for Writing References & Citations.
Maintenance Modifying the data –Add records –Delete records –Update records Modifying the design –Add fields into tables –Remove fields from a table –Change.
Creating your website Using Plain HTML. What is HTML? ► Web pages are authored in HyperText Markup Language (HTML) ► Plain text is marked up with tags,
MIS 3200 – Unit 6.2 Learning Objectives How to move data between pages – Using Query Strings How to control errors on web pages – Using Try-catch.
Introduction to HTML. What is a HTML File?  HTML stands for Hyper Text Markup Language  An HTML file is a text file containing small markup tags  The.
Independent work task Create a new folder in your ICT folder called Weather. Log on to the school network Click on the RED LytchettFile intranet logo Instructions:
Automated Announcement Delivery System Keyword String Syntax.
4 1 Array and Hash Variables CGI/Perl Programming By Diane Zak.
INT213 Week 1.  A Named storage area (in RAM) that can hold a value (like a mailbox holding a letter)  Contents of a variable can be assigned, changed.
Lesson 6. Python 3.3 Objectives. In this lesson students will learn how to output data to the screen and request input from the user. Students will also.
Working with Forms and Regular Expressions Validating a Web Form with JavaScript.
Introduction to Computer Programming
Adapted from  2012 Prentice Hall, Inc. All rights reserved. 5 th ed: Chapter 2 and th ed: 4.11 SY306 Web and Databases for Cyber Operations.
A beginner ’ s guide to web research. 5 Questions to Ask About Research Websites.
Creating Databases applications for the Web: week 2 Basic HTML review, forms HW: Identify unique source for asp, php, Open Source, MySql, Access.
Insert Part of Speech verbDefinition To put, or place inside something. Sentence You should insert a comma between the city and state. Week 22 – Monday.
Programming for Beginners Martin Nelson Elizabeth FitzGerald Lecture 9: Arrays; Revision Session.
(Monty) Python for loops Mr. Neat. Comparison JavaC++Python source code name.java.cpp.py Object Oriented? required optional functions/ methods ( bob.hide()
5 Copyright © 2004, Oracle. All rights reserved. PL/SQL Server Pages.
Part 1 Learning Objectives To understand that variables are a temporary named location to store data and that programmers work with different data types.
Future Cities Cities of transaction Future Cities workshop, RIBA London 18 th April 2011 Tim Stonor Architect & Town Planner Managing Director
Comic Book Text Features Mrs. Justice Team Integrity Grade 4.
What can you remember? 1. Go to URL: m.socrative.com
Agenda Phys 121 Final Exam Review Spring 2017
Introduction to HTML.
Comic Book Text Features
Also known as quotations
Jumpstarts 101 An introduction to Ovid Jumpstarts
O ‘ clock times- PowerPoint months
National 5 Computing Science Specimen Question Paper
Agenda Phys 121 Final Exam Review Fall 2017
Grammar Starter Brackets All ✰ Most ✰✰ Some ✰✰✰
2 7 × 2 6 = 2 ? 2 ×2×2×2×2×2×2 2 ×2×2×2×2×2 In total how many times will we be multiplying 2’s together?
The Linux Command Line Chapter 27
LO To write equivalent expressions RAG
Forms, cont’d.
The backslash is used to escape characters that are used in Python
Enter your title here 1 Enter your text here Enter your text here 2
Spot the bug!.
Access: Queries IV Participation Project
Sr. Quality Engineering Manager,
Lesson 4: Hyperlinks.
/London.html Show the URL for the first location.
For use on your feedback page
Dijkstra The start box doesn’t need zero in working values
Half past- PowerPoint months
Ensure the cursor is in cell A1 of the ‘Output worksheet.
Close Reading Learning the Basics
Go ahead and replace it with your own text.
LEARNING OBJECTIVES FOR WEEK 1
Why is this a magic square?
Replace with the name of your Michigan Place
Explain what is wrong and correct the mistake?
User Input Keyboard input.
1. Rearrange the equation 2p + 1 = 11 to make p the subject.
What is the question? The answer is -2
Introduction to Python
Substituting into expressions.
LEARNING OBJECTIVES FOR WEEK 1
Replace with the name of your Michigan Place
Substituting into expressions.
The Linux Command Line Chapter 27
Enter your title here 1 Enter your text here Enter your text here 2
Presentation transcript:

http://www.onlineweather.com/v4/uk/climate/York.html http://www.onlineweather.com/v4/uk/climate/London.html http://www.onlineweather.com/v4/uk/climate/Cardiff.html http://www.onlineweather.com/v4/uk/climate/?????.html Show the URL for the first location. Ask pupils which part of the URL indicates the city. Ask pupils what the URL would be to collect data for London and Cardiff. Demonstrate they are correct by revealing the next two URLs. Show the last URL and explain that the name of the city is the only part of the URL which needs to be changed.

http://www.onlineweather.com/v4/uk/climate/?????.html [“city” “which city?”] http://www.onlineweather.com/v4 /uk/climate/ [“city” “which city?”].html Explain that in a web query, part of the URL can be replaced to allow the user to type in what is required. Show the text string they will use [“city” “which city?”] and explain that this will replace the name of the city in the URL. Show the full amended URL. Tell pupils that the syntax is very important because it will not work if they get it wrong: point out the square brackets, the speech marks, and the space between each part. Explain that when part of the URL is replaced with a text string the web query will wait for the user to type in the name of the city for which they want the data. Tell pupils you will now show them how to do this in a system.