Blog

Home arrow Blog
Blog - Content Section Layout
Get started with XPath 2.0
Contributed by Howell   
Monday, 05 June 2006
 A major update to a familiar standard

Although still a Candidate Recommendation, XPath 2.0 is moving towards formal approval. The first update to the XPath recommendation since 1999 is eagerly anticipated by the market and, indeed, several tools have already begun to implement the latest drafts. The changes are so fundamental, I expect that in time the world will come to see XPath 1.0 as a draft for XPath 2.0.

The XPath 2.0 recommendation serves as the basis for XSLT 2.0 and XQuery 1.0. Both languages use XPath as their core querying engine and augment it with statements to format the results (see Resources).

The many changes between XPath 1.0 and XPath 2.0 include:

Last Updated ( Monday, 03 July 2006 )
Read more...
Java Print Service Architecture
Written by Administrator   
Monday, 05 June 2006

Last Updated ( Friday, 07 July 2006 )
Read more...
Validation with XMLBeans
Written by Administrator   
Monday, 05 June 2006
An essential part of schema-related work is validating instances based on the schema. XMLBeans provides a number of ways for you to ensure your instances are valid, both at the command line and programmatically at run time.
Read more...
Profiling CPU usage from within a Java application
Written by Administrator   
Monday, 05 June 2006

How do you determine CPU usage in Java?

Last Updated ( Friday, 07 July 2006 )
Read more...
PHP Echo tutorial
Contributed by Howell   
Monday, 05 June 2006

The PHP function echo is a means of outputting text to the web browser. Throughout your PHP career you will be using the echo function more than any other.

Outputting a String

To output a string, like we have done in previous lessons, use the PHP echo function. You can place either a string variable or you can use quotes, like we do below, to create a string that the echo function will output.

PHP Code:
<?php
$myString = "Hello!";
echo $myString;
echo "<h5>I love using PHP!</h5>";
?>

Display:
Hello!
I love using PHP!
In the above example we output "Hello!" without a hitch. The text we are outputting is being sent to the user in the form of a web page, so it is important that we use proper HTML syntax!

In our second echo statement we use echo to write a valid Header 5 HTML statement. To do this we simply put the <h5> at the beginning of the string and closed it at the end of the string. Just because you're using PHP to make web pages does not mean you can forget about HTML syntax!

Careful When Echoing Quotes!

It is pretty cool that you can output HTML with PHP. However, you must be careful when using HTML code or any other string that includes quotes! The echo function uses quotes to define the beginning and end of the string, so you must use one of the following tactics if your string contains quotations:

Don't use quotes inside your string

Escape your quotes that are within the string with a slash. To escape a quote just place a slash directly before the quotation mark, i.e. \"
Use single quotes (apostrophes) for quotes inside your string.
See our example below for the right and wrong use of the echo function:

PHP Code:
<?php
// This won't work because of the quotes around specialH5!
echo "<h5 class="specialH5">I love using PHP!</h5>"; 

// OK because we escaped the quotes!
echo "<h5 class=\"specialH5\">I love using PHP!</h5>"; 

// OK because we used an apostrophe '
echo "<h5 class='specialH5'>I love using PHP!</h5>"; 
?>

If you want to output a string that includes quotations, either use an apostrophe ( ' ) or escape the quotations by placing a slash in front of it ( \" ). The slash will tell PHP that you want the quotation to be used within the string and NOT to be used to end echo's string.

Echoing Variables

Echoing variables is very easy. The PHP developers put in some extra work to make the common task of echoing all variables nearly foolproof! No quotations are required, even if the variable does not hold a string. Below is the correct format for echoing a variable.

PHP Code:

<?php
$my_string = "Hello Bob.  My name is: ";
$my_number = 4;
$my_letter = a;
echo $my_string;
echo $my_number;
echo $my_letter;
?>


Display:
Hello Bob. My name is: 4a
Echoing Variables and Text Strings
You can also combine text strings and variables. By doing such a conjunction you save yourself from having to do a large number of echo statements. Variables and text strings are joined together with a period( . ). The example below shows how to do such a combination.

PHP Code:
<?php
$my_string = "Hello Bob.  My name is: ";
$newline = "<br />";
echo $my_string."Bobettta".$newline;
echo "Hi, I'm Bob.  Who are you? ".$my_string.$newline;
echo "Hi, I'm Bob.  Who are you? ".$my_string."Bobetta";
?>
Display:
Hello Bob. My name is: Bobetta
Hi, I'm Bob. Who are you? Hello Bob. My name is:
Hi, I'm Bob. Who are you? Hello Bob. My name is: Bobetta

 

<< Start < Previous 11 12 13 14 15 16 17 18 Next > End >>

Results 161 - 170 of 179

  home              contact us

 

©2006-2010 DeveloperZone.biz   All rights reserved     powered by Mambo Designed by Siteground