« Home « Chủ đề lập trình PHP

Chủ đề : lập trình PHP


Có 120+ tài liệu thuộc chủ đề "lập trình PHP"

HTML in 10 Steps or Less- P15

tailieu.vn

To create a new unnamed document, choose File ➪ New or click the New Document button (see Figure 117-1) on the tool bar. To create a new named document, choose File ➪ Open or click the Open button (see Figure 117-2). This displays the Open File(s) dialog box.. In the field that lists all your folders (see Figure 117-3), double-click...

HTML in 10 Steps or Less- P16

tailieu.vn

You’ll see all open documents either in the Document Selector or in the Document Tabs.. Choose File ➪ Workspace ➪ Save As from the menu. This opens the Save As dialog box (see Figure 127-1), with the workspace name initialized to the current folder.. Figure 127-1: The Save As dialog box with the workspace filename set to that of the...

HTML in 10 Steps or Less- P17

tailieu.vn

In the “Please Sign Up!” form, enter the information they request and click the Register button (see Figure 136-2).. tips • To download the user manual, click the Technical Support link in the vertical list and then scroll down to the Resources section on the next page. Scroll down to HTML Web Sites in the left-hand list.. Click the Add...

HTML in 10 Steps or Less- P18

tailieu.vn

Place the cursor in the current document at the point you want to insert the style definition. Click the CSS button and choose Font from the submenu to open the Font dialog box (see Figure 146-1).. Figure 146-1: The Font dialog box. Enter a selector of your choice in the Selector field.. To specify a color property, click the color...

HTML in 10 Steps or Less- P19

tailieu.vn

E ach function in the HTML Tools Palette we’ve covered here in Part 13 is mirrored as a command on the Markup menu. Choose Edit ➪ Set Menu Keys from the BBEdit menu bar to open the Set Menu Keys dialog box (see Figure 156-1).. Figure 156-1: The Set Menu Keys dialog box. To access the commands for the Markup...

HTML in 10 Steps or Less- P29

tailieu.vn

Add a Project Folder dialog box (HomeSite), 349. images in BBEdit, 309 images in Dreamweaver MX,. alt attribute, 308 Anchor dialog box, 305 background properties. Border dialog box, 324–325 border properties (CSS),. Replace dialog box,. forms building, 312–313 forms text areas, 313 Frame dialog box, 314 frames and, 314–315 frames scrolling, 314 handicap accessibility, 308. HTML Tools Palette, 304–305 HTML...

HTML in 10 Steps or Less- P27

tailieu.vn

Using the Drawing toolbar, click the AutoShapes button and choose a shape category (see Figure 233-1).. You can also access a full palette of hundreds of Web-safe colors.. Change the angle of a line by dragging one of the endpoints up or down.. tips • Drag diagonally away from the starting point — the far- ther you drag, the bigger...

HTML in 10 Steps or Less- P28

tailieu.vn

T ables may be one of the most powerful design features you can employ in a Web page — and FrontPage makes creating and customizing tables so easy, you’ll find yourself using them all the time to control the placement of text and images.. You can do this in any number of ways, as described in Steps 3 and 4.....

HTML in 10 Steps or Less- P24

tailieu.vn

Click once on the image you want to turn into an image map.. In the lower half of the Properties inspector, click on the map shape that works for the area you want to turn into an image map (see Figure 204-2).. Click in the Link box and type the URL or path to the file the image map area...

HTML in 10 Steps or Less- P25

tailieu.vn

Once the images are loaded, the browser loads the rest of the page and the entire document appears at once. tag on the tag selector in the lower- left corner of the document window (see Figure 214-1).. tag in the document window’s tag selector. Click the Behaviors panel’s plus button and choose Show Events For ➪ 4.0 and Later Browsers.....

HTML in 10 Steps or Less- P26

tailieu.vn

In Navigation view, click the New Page button. With the Home Page icon selected, indicating that the next page should be a subpage to it, click the New Page button again. To create a third level of pages, click one of the existing subpage icons and then click the New Page button. Click the minus back to a plus sign...

HTML in 10 Steps or Less- P23

tailieu.vn

Delete items in your list and observe the changes in the list itself. Add items to your list and observe the changes to the number of bul- leted items or the number sequence of list items.. As shown in Figure 194-2, the items in the list alternate between being terms and definitions.. Definitions are indented automatically to link them clearly...

HTML in 10 Steps or Less- P22

tailieu.vn

Before deploying your site (or project) to the Web, it’s a good idea to make sure your deployment options are set up properly. This prevents last-minute surprises when you deploy the site — such as an inability to log on to the remote server because you have the wrong password or don’t have the right folder chosen to store your...

HTML in 10 Steps or Less- P21

tailieu.vn

The Tag Editor - IMG dialog box opens (see Figure 175-1).. Figure 175-1: Choosing an image and setting its attributes in the Tag Editor - IMG dialog box. In the IMG Tag tab, click the Source box and type the pathname of the image you want to insert. To avoid mistakes, click the Folder but- ton at the end of...

Lập trình web với PHP

tailieu.vn

Ngôn ngữ lập trình php.. 10/10/10 3. Ngôn ngữ lập trình php. Ngôn ngữ lập trình php(TT). 10/10/10 5. 10/10/10 7. 10/10/10 9. 10/10/10 11

Tương tác giữa PHP và jQuery - part 1

tailieu.vn

In the first part of this book, you’ll be getting familiar with the history and basic capabilities of jQuery. You'll also learn the basics of jQuery, including how to make the library available for use in your applications and how the core of jQuery—its powerful selector engine—works.. These libraries aimed to simplify the use of JavaScript to make it more...

Tương tác giữa PHP và jQuery - part 2

tailieu.vn

The basic selectors allow developers to select elements by tag type, class name, ID, or any combination thereof. While viewing http://localhost/testing/, launch the Firebug dialog, and click the Console tab (see Figure 1-4). If the Console panel is disabled, click the Console tab, and select Enabled. Selecting Elements by Tag Type. To select an element by tag type, simply use...

Tương tác giữa PHP và jQuery - part 3

tailieu.vn

21 which returns the following in the console:. span.foo. span, span.foo. Because your HTML example does not have any form elements in it, you’ll need to append the file with some new markup for the following examples.. In index.html, add the following HTML between the last paragraph tag and the first script tag:. <label for="name">Name</label><br />. <input name="name". id="name". /><br...

Tương tác giữa PHP và jQuery - part 4

tailieu.vn

$("p.foo").next();. This generates the following output:. $("p.foo").next("#bar");. To select all paragraphs after the paragraph with the class foo, use the following code:. $(".foo").nextAll("p");. This returns the following result:. The third method available for selecting next sibling elements is the .nextUntil() method. It’s important to note that the element matched by the selector will not be included in the result set.....

Tương tác giữa PHP và jQuery - part 5

tailieu.vn

41 INSPECTING HTML USING THE ELEMENT INSPECTOR IN FIREBUG. You can also see this by using the element inspection tool provided by Firebug. Click it to activate the element inspector.. The button to activate the element inspector. After the inspector is active, you can hover over different elements in the browser, and they'll highlight with a blue outline. This brings...