Archive for November, 2007

LIGHTENING YOUR WORKLOAD WITH INCLUDES 9. A drawback (Medical web site)

Friday, November 23rd, 2007

LIGHTENING YOUR WORKLOAD WITH INCLUDES 9. A drawback with this technique is that filenames consist of only one word at least they should. If you ve picked up bad habits from Windows and Mac OS X permit ting spaces in filenames, get out of them immediately. Spaces are not allowed in URLs, which is why most web design software replaces spaces with %20. You can get around this problem, though, by using an underscore. Change the name of the file you re working with so that it uses two words separated by an underscore. For example, change contact.php to contact_us.php. 10. Change the code in title.inc.php like this: The middle line uses a function called str_replace() to look for every underscore and replace it with a space. The function takes three arguments: The character you want to replace (you can also search for multiple characters) The replacement character or characters The string where you want the changes to be made You can also use str_replace() to remove character(s) by using an empty string (a pair of quotes with nothing between them) as the second argument. This replaces the string in the first argument with nothing, effectively removing it. The other change is in the final line of code. Instead of ucfirst(), it uses the related function ucwords(), which gives each word an initial cap. 11. Save title.inc.php and load into a browser the file that you renamed in step 9. Figure 4-7 shows the result with contact_us.php. Figure 4-7. With the help of str_replace(), you can even create titles that contain more than one word. 12. Change back the name of the file so that it no longer has an underscore. Reload the file into a browser. You ll see that the script in title.inc.php still works. There are no underscores to replace, so str_replace() leaves the value of $title untouched, and ucwords() converts the first letter to uppercase, even though there s only one word. 101
Searching for affordable and reliable webhost to host and run your web applications? Go to our java web server services and you will be pleased.

PHP SOLUTIONS: DYNAMIC WEB DESIGN MADE EASY If (Web hosting support)

Thursday, November 22nd, 2007

PHP SOLUTIONS: DYNAMIC WEB DESIGN MADE EASY If you ve been using CSS for a while, you ll know that putting anything above the DOCTYPE declaration forces browsers into quirks mode. However, this doesn t apply to PHP code, as long as it doesn t send any output to the browser. The code in title.inc.php only assigns a value to $title, so the DOCTYPE declara- tion remains the first thing that the browser sees, and any CSS is displayed in standards-compliant mode. 7. Save both pages and load the web page into a browser. Figure 4-6 shows how the change is reflected in contact.php. Figure 4-6. Once you extract the filename, it s possible to create the page title dynamically. 8. Not bad, but what if you prefer an initial capital letter for the part of the title derived from the filename? Nothing could be simpler. PHP has a neat little function called ucfirst(), which does exactly that (the name is easy to remember once you realize that uc stands for uppercase ). Add another line to the code in step 4 like this: When confronted by something like this, some people start breaking out into a sweat, convinced that programming is a black art that is the work of the devil or at least of a warped mind. Actually, it s quite simple: the first line of code after the PHP tag gets the filename, strips the .php off the end, and stores it as $title. The next line takes the value of $title, passes it to ucfirst() to capitalize the first letter, and stores the result back in $title. So, if the filename is contact.php, $title starts out as contact, but by the end of the following line it has become Contact. You can shorten the code by combining both lines into one like this: $title = ucfirst(basename($_SERVER[’SCRIPT_NAME’], ‘.php’)); When you nest functions like this, PHP processes the innermost one first and passes the result to the outer function. It makes your code shorter, but it s not so easy to read.
We highly recommend you visit web and email hosting services if you need stable and cheap web hosting platform for your web applications.

LIGHTENING YOUR WORKLOAD WITH (Web design software) INCLUDES You now have

Thursday, November 22nd, 2007

LIGHTENING YOUR WORKLOAD WITH INCLUDES You now have the basis for automatically creating the page title for every page in your site, using basename(), $_SERVER[’SCRIPT_NAME’], and an include file. 3. Create a new PHP file called title.inc.php and save it in the includes folder. 4. Strip out any code inserted by your script editor, and type in the following code (the finished code for title.inc.php is in the ch04/includes folder of the download files): This finds the filename of the current page, strips the .php filename extension, and assigns the result to a variable called $title. The code for this include file must be enclosed in PHP tags. This is because the whole file needs to be treated as PHP. Unlike the menu, it won t be displayed directly inside other pages. 5. Open a PHP page in your script editor. If you re using the Japan Journey site, use contact.php. Include title.inc.php by typing this above the DOCTYPE declaration: 6. Amend the This uses echo to display — (the numerical entity for an em dash) followed by the value of $title. Because the string is enclosed in double quotes, PHP displays the value of $title (see All you ever wanted to know about quotes and more in Chapter 3 for an explanation of how PHP treats variables inside double quotes). The variable $title has also been enclosed in curly braces because there is no space between the em dash and $title. Although not always necessary, it s a good idea to enclose variables in braces when using them without any whitespace in a double-quoted string, as it makes the variable clear to you and the PHP engine. The first few lines of your page should look like this:
In case you need quality webspace to host and run your web applications, try our personal web hosting services.

PHP SOLUTIONS: DYNAMIC WEB DESIGN MADE EASY browser, (Net web server)

Wednesday, November 21st, 2007

PHP SOLUTIONS: DYNAMIC WEB DESIGN MADE EASY browser, you ll see that the here ID has been automatically inserted into the correct link. If you experience any problems, compare your code with menu.inc02.php in the download files. Figure 4-5. With the help of some simple conditional code, the include file produces different output for each page. Now that you know how to find the filename of the current page, you might also find it useful to automate the tag of each page. This works only if you use filenames that tell you something about the page s contents, but since that s a good practice anyway, it s not really a restriction. PHP Solution 4-4: Automatically generating a page s title from its filename Although the following steps use the Japan Journey website, you can try this out with any page. 1. The basename() function used in the previous solution takes an optional second argument: a string containing the filename extension. Create a new PHP file and insert the following code between a pair of PHP tags (the code is in scriptname2.php): echo basename($_SERVER[’SCRIPT_NAME’], ‘.php’); Note that when passing more than one argument to a function, you separate the arguments with commas. 2. Save the page with any name you like (as long as it has a .php filename extension), and load it into a browser. It should display the name of the file stripped of the .php extension. The download file displays scriptname2. <br />You need excellent and relaible webhost company to host your web applications? Then pay a visit to <a href="http://www.b5websitehosting.com">Inexpensive Web Hosting</a> services. </p> </div> <p class="postmetadata">Posted in <a href="http://mysql5.armadillowebhosting.com/category/mysql5/" title="View all posts in MYSQL5" rel="category tag">MYSQL5</a> | <a href="http://mysql5.armadillowebhosting.com/mysql5/php-solutions-dynamic-web-design-made-easy-browser-net-web-server/#respond" title="Comment on PHP SOLUTIONS: DYNAMIC WEB DESIGN MADE EASY browser, (Net web server)">No Comments »</a></p> </div> <div class="post"> <h3 id="post-317"><a href="http://mysql5.armadillowebhosting.com/mysql5/lightening-your-web-hosting-uk-workload-with-includes-on-mac-os/" rel="bookmark" title="Permanent Link to LIGHTENING YOUR (Web hosting uk) WORKLOAD WITH INCLUDES On Mac OS">LIGHTENING YOUR (Web hosting uk) WORKLOAD WITH INCLUDES On Mac OS</a></h3> <small>Tuesday, November 20th, 2007</small> <div class="entry"> <p>LIGHTENING YOUR WORKLOAD WITH INCLUDES On Mac OS X, you should see something similar to this: $_SERVER[’SCRIPT_NAME’] comes from one of PHP s built-in superglobal arrays, and it always gives you the absolute (site root relative) pathname for the current page. As you can see from the two screenshots, it works the same regardless of the server s operating system. What you need now is a way of extracting just the filename. 4. Amend the code in the previous step like this: echo basename($_SERVER[’SCRIPT_NAME’]); 5. Save scriptname.php and click the Reload button in your browser. You should now see just the filename: scriptname.php. If you get a parse error message instead, make sure that you have included the closing parenthesis just before the final semicolon. The built-in PHP function basename() takes the pathname of a file and extracts the filename. So, there you have it a way of finding the filename of the current page. 6. Amend the code in menu.inc.php like this (the changes are highlighted in bold): <?php $currentPage = basename($_SERVER['SCRIPT_NAME']); ?><br /> <ul id="nav"> <li><a href="index.php" <?php if ($currentPage == . 'index.php') {echo 'id="here"';} ?>>Home</a></li> <li><a href="journal.php" <?php if ($currentPage == . 'journal.php') {echo 'id="here"';} ?>>Journal</a></li> <li><a href="gallery.php" <?php if ($currentPage == . 'gallery.php') {echo 'id="here"';} ?>>Gallery</a></li> <li><a href="contact.php" <?php if ($currentPage == . 'contact.php') {echo 'id="here"';} ?>>Contact</a></li> </ul> <p> Make sure that you get the combination of single and double quotes correct. The value of attributes, such as id, must be enclosed in quotes for valid XHTML. Since I ve used double quotes around here, I ve wrapped the string ‘id=”here”‘ in single quotes. I could have written “id=”here”", but a mixture of single and double quotes is easier to read. 7. Save menu.inc.php and load index.php into a browser. The menu should look no different from before. Use the menu to navigate to other pages. This time, as shown in Figure 4-5, the border alongside the current page should be white, indicating your location within the site. If you inspect the page s source view in the <br />In case you need affordable webhost to host your website, our recommendation is <a href="http://jboss.armadillowebhosting.com">ecommerce web host</a> services. </p> </div> <p class="postmetadata">Posted in <a href="http://mysql5.armadillowebhosting.com/category/mysql5/" title="View all posts in MYSQL5" rel="category tag">MYSQL5</a> | <a href="http://mysql5.armadillowebhosting.com/mysql5/lightening-your-web-hosting-uk-workload-with-includes-on-mac-os/#respond" title="Comment on LIGHTENING YOUR (Web hosting uk) WORKLOAD WITH INCLUDES On Mac OS">No Comments »</a></p> </div> <div class="post"> <h3 id="post-316"><a href="http://mysql5.armadillowebhosting.com/mysql5/php-solutions-cheapest-web-hosting-dynamic-web-design-made-easy-using/" rel="bookmark" title="Permanent Link to PHP SOLUTIONS: (Cheapest web hosting) DYNAMIC WEB DESIGN MADE EASY Using">PHP SOLUTIONS: (Cheapest web hosting) DYNAMIC WEB DESIGN MADE EASY Using</a></h3> <small>Monday, November 19th, 2007</small> <div class="entry"> <p>PHP SOLUTIONS: DYNAMIC WEB DESIGN MADE EASY Using PHP to identify the current page I ll have more to say about security issues surrounding include files later in the chapter. First, let s fix that problem with the menu style that indicates which page you re on. PHP Solution 4-3: Automatically setting a style to indicate the current page Continue working with the same files. Alternatively, use index02.php, contact.php, gallery.php, journal.php, includes/menu.inc01.php, and includes/footer.inc01.php from the download files for this chapter. If using the download files, remove the 01 and 02 from any filenames. 1. Open menu.inc.php. The code currently looks like this:<br /> <ul id="nav"> <li><a href="index.php" id="here">Home</a></li> <li><a href="journal.php">Journal</a></li> <li><a href="gallery.php">Gallery</a></li> <li><a href="contact.php">Contact</a></li> </ul> <p> The style to indicate the current page is controlled by the id=”here” highlighted in line 3. What you need is a way of getting PHP to insert id=”here” into the journal.php <a> tag if the current page is journal.php, into the gallery.php <a> tag if the page is gallery.php, and into the contact.php <a> tag if the page is contact.php. Hopefully, you have got the hint by now you need an if statement (see the section on conditional statements, Making decisions, in Chapter 3) in each <a> tag. Line 3 needs to look like this: <li><a href="index.php" <?php if ($currentPage == 'index.php') { . echo 'id="here"'; } ?>>Home</a></li> <p> The other links should be amended in a similar way. But how does $currentPage get its value? You need some way of finding out the filename of the current page. 2. Leave menu.inc.php to one side for the moment and create a new PHP page called scriptname.php. Insert the following code between a pair of PHP tags (alternatively, just use scriptname1.php in the download files for this chapter): echo $_SERVER[’SCRIPT_NAME’]; 3. Save scriptname.php and view it in a browser. On a Windows system, you should see something like the following screenshot. (The download file contains the code for this step and the next, together with text indicating which is which.) <br />Go visit our <a href="http://tomcat.jspwebsitehosting.com">java server pages</a> services for a reliable, lowcost webhost to satisfy all your needs. </p> </div> <p class="postmetadata">Posted in <a href="http://mysql5.armadillowebhosting.com/category/mysql5/" title="View all posts in MYSQL5" rel="category tag">MYSQL5</a> | <a href="http://mysql5.armadillowebhosting.com/mysql5/php-solutions-cheapest-web-hosting-dynamic-web-design-made-easy-using/#respond" title="Comment on PHP SOLUTIONS: (Cheapest web hosting) DYNAMIC WEB DESIGN MADE EASY Using">No Comments »</a></p> </div> <div class="post"> <h3 id="post-315"><a href="http://mysql5.armadillowebhosting.com/mysql5/lightening-your-workload-with-includes-browser-the-password/" rel="bookmark" title="Permanent Link to LIGHTENING YOUR WORKLOAD WITH INCLUDES browser, the password">LIGHTENING YOUR WORKLOAD WITH INCLUDES browser, the password</a></h3> <small>Monday, November 19th, 2007</small> <div class="entry"> <p>LIGHTENING YOUR WORKLOAD WITH INCLUDES browser, the password remains hidden. Although the include file doesn t have a .php filename extension, its contents have been merged with index.php, and both files are treated as a single entity. Figure 4-3. PHP code inside an include file is parsed before the page is sent to the browser. 5. Now type the URL for menu.inc in the browser address bar. It should be http:// localhost/phpsolutions/includes/menu.inc (adjust the URL if your include file is in a different location). Load the file into your browser. This time, you ll see something very different, as shown in Figure 4-4. Figure 4-4. A file with an .inc filename extension is treated as plain text when accessed directly. Neither the server nor the browser knows how to deal with an .inc file, so the entire contents are displayed onscreen: raw XHTML, your secret password, everything . . . 6. Change the name of the include file back to menu.inc.php, and load it directly into your browser by adding .php to the end of the URL you used in the previous step. This time, you should see an unordered list of links, as shown alongside. Inspect the browser s source view. It should look similar to the navigation section in Figure 4-3. The PHP isn t exposed. 7. Change the include command inside index.php back to its original setting like this: <?php include('includes/menu.inc.php'); ?> <br />From our experience, we are can tell you that you can find a reliable and cheap webhost service at <a href="http://www.armadillowebhosting.com">Java Web Hosting</a> services. </p> </div> <p class="postmetadata">Posted in <a href="http://mysql5.armadillowebhosting.com/category/mysql5/" title="View all posts in MYSQL5" rel="category tag">MYSQL5</a> | <a href="http://mysql5.armadillowebhosting.com/mysql5/lightening-your-workload-with-includes-browser-the-password/#respond" title="Comment on LIGHTENING YOUR WORKLOAD WITH INCLUDES browser, the password">No Comments »</a></p> </div> <div class="post"> <h3 id="post-314"><a href="http://mysql5.armadillowebhosting.com/mysql5/apache-web-server-tutorial-php-solutions-dynamic-web-design-made-easy-choosing/" rel="bookmark" title="Permanent Link to Apache web server tutorial - PHP SOLUTIONS: DYNAMIC WEB DESIGN MADE EASY Choosing">Apache web server tutorial - PHP SOLUTIONS: DYNAMIC WEB DESIGN MADE EASY Choosing</a></h3> <small>Sunday, November 18th, 2007</small> <div class="entry"> <p>PHP SOLUTIONS: DYNAMIC WEB DESIGN MADE EASY Choosing the right filename extension for includes Both of the include files you created in the preceding section have what may seem rather unusual filenames with two extensions, .inc and .php, strung together. The truth is that it doesn t matter what you use as a filename extension; PHP simply includes the content of the file and treats it as part of the main page. A common convention is to use .inc for all include files. However, this potentially exposes you to a major security risk because most servers treat .inc files as plain text. Let s say an include file contains the username and password to your database, and you store the file with an .inc filename extension within your website s root folder. Anyone who discovers the name of the file can simply type the URL in a browser address bar, and the browser will obligingly display all your secret details! On the other hand, any file with a .php extension is automatically sent to the PHP engine for parsing before it s sent to the browser. So, as long as your secret information is inside a PHP code block and in a file with a .php extension, it won t be exposed. That s why it s now widely recommended to use .inc.php as a double extension for PHP includes. The .inc part reminds you that it s an include file, but servers are only interested in the .php on the end, which ensures that all PHP code is correctly parsed. PHP Solution 4-2: Testing the security of includes Use index.php and menu.inc.php from the previous section. Alternatively, use index02.php and menu.inc01.php from the download files for this chapter. If you use the download files, remove the 02 and 01 from the filenames before using them. 1. Rename menu.inc.php as menu.inc and change the code in index.php so that the include command refers to menu.inc instead of menu.inc.php, like this: <?php include('includes/menu.inc'); ?> Even if you normally use absolute pathnames in your websites (ones that begin with a forward slash), use a relative pathname on this occasion. PHP include commands don t normally work with absolute pathnames. I ll show you how to get around this restriction later in the chapter. 2. Load index.php into a browser. You should see no difference. 3. Amend the code inside menu.inc to store a password inside a PHP variable like this:<br /> <ul id="nav"> <li><a href="index.php" id="here">Home</a></li> <p> <?php $password = 'topSecret'; ?> <li><a href="journal.php">Journal</a></li> <li><a href="gallery.php">Gallery</a></li> <li><a href="contact.php">Contact</a></li> </ul> <p> 4. Click the Reload button in your browser. As Figure 4-3 shows, the navigation menu still displays correctly. What s more, if you view the page s source code in the <br />Please visit <a href="http://domain.b5websitehosting.com">Domain Name Hosting</a> services for high quality webhost to host and run your jsp applications. </p> </div> <p class="postmetadata">Posted in <a href="http://mysql5.armadillowebhosting.com/category/mysql5/" title="View all posts in MYSQL5" rel="category tag">MYSQL5</a> | <a href="http://mysql5.armadillowebhosting.com/mysql5/apache-web-server-tutorial-php-solutions-dynamic-web-design-made-easy-choosing/#respond" title="Comment on Apache web server tutorial - PHP SOLUTIONS: DYNAMIC WEB DESIGN MADE EASY Choosing">No Comments »</a></p> </div> <div class="post"> <h3 id="post-313"><a href="http://mysql5.armadillowebhosting.com/mysql5/web-design-portfolio-lightening-your-workload-with-includes-6-open-indexphp/" rel="bookmark" title="Permanent Link to Web design portfolio - LIGHTENING YOUR WORKLOAD WITH INCLUDES 6. Open index.php,">Web design portfolio - LIGHTENING YOUR WORKLOAD WITH INCLUDES 6. Open index.php,</a></h3> <small>Saturday, November 17th, 2007</small> <div class="entry"> <p>LIGHTENING YOUR WORKLOAD WITH INCLUDES 6. Open index.php, and insert the following in the space left by the nav unordered list: <?php include('includes/menu.inc.php'); ?> 7. Save index.php and load the page into a browser. It should look exactly the same as before. Although the menu and the rest of the page are coming from different files, PHP merges them before sending any output to the browser. 8. Do the same with the footer <div>. Cut the lines highlighted in bold in the origi nal listing, and paste them into a blank file called footer.inc.php in the includes folder. Then insert the command to include the new file in the gap left by the footer <div>: <?php include('includes/footer.inc.php'); ?> 9. Save all pages and load index.php into a browser. Again, it should look identical to the original page. If you navigate to other pages in the site, the menu and footer should appear on every page. The code in the include files is now serving all pages. 10. To prove that the menu is being drawn from a single file, change one of the links in menu.inc.php like this, for example: <li><a href="journal.php">Blog</a></li> <p> 11. Save menu.inc.php and view the site again. The change is reflected on all pages. You can check your code against index02.php, menu.inc01.php, and footer.inc01.php. As Figure 4-2 shows, there s a problem with the code at the moment. Even when you navigate away from the home page, the style that indicates which page you re on doesn t change (it s controlled by the here ID in the <a> tag). Fortunately, that s easily fixed with a little PHP conditional logic. Figure 4-2. Moving the navigation menu to an external file makes maintenance easier, but you need some conditional logic to apply the correct style to the current page. Before doing that, let s take a look at some important aspects of working with include files in PHP. <br />We recommend you use <a href="http://j2ee.jspwebsitehosting.com">shared web hosting</a> services, because many users agree that it is cheap, reliable and customer-satisfying webhost. </p> </div> <p class="postmetadata">Posted in <a href="http://mysql5.armadillowebhosting.com/category/mysql5/" title="View all posts in MYSQL5" rel="category tag">MYSQL5</a> | <a href="http://mysql5.armadillowebhosting.com/mysql5/web-design-portfolio-lightening-your-workload-with-includes-6-open-indexphp/#respond" title="Comment on Web design portfolio - LIGHTENING YOUR WORKLOAD WITH INCLUDES 6. Open index.php,">No Comments »</a></p> </div> <div class="post"> <h3 id="post-312"><a href="http://mysql5.armadillowebhosting.com/mysql5/php-solutions-dynamic-web-design-made-easy-a-managed-web-hosting/" rel="bookmark" title="Permanent Link to PHP SOLUTIONS: DYNAMIC WEB DESIGN MADE EASY A (Managed web hosting)">PHP SOLUTIONS: DYNAMIC WEB DESIGN MADE EASY A (Managed web hosting)</a></h3> <small>Friday, November 16th, 2007</small> <div class="entry"> <p>PHP SOLUTIONS: DYNAMIC WEB DESIGN MADE EASY<br /> <div id="maincontent"> <h1>A journey through Japan with PHP </h1> <p>Ut enim ad minim veniam, quis nostrud . . .</p> <div id="pictureWrapper"> <img src="images/water_basin.jpg" alt="Water basin at Ryoanji . temple" width="350" height="237" class="picBorder" /> </div> <p>Eu fugiat nulla pariatur. Ut labore et dolore . . .</p> <p>Consectetur adipisicing elit, duis aute irure . . .</p> <p>Quis nostrud exercitation eu fugiat nulla . . .</p> </div> <div id="footer"> <p>© 2006 David Powers</p> </div> </div> <p> </body> PHP Solution 4-1: Moving the navigation menu and footer to include files 1. Copy index01.php from the download files for this chapter to the phpsolutions site root, and rename it index.php. If you are using a program like Dreamweaver that offers to update the page links, don t update them. The relative links in the download file are correct. Check that the CSS and images are displaying properly by loading index.php into a browser. It should look the same as Figure 4-1. 2. Copy journal.php, gallery.php, and contact.php from the download files to your site root folder. These pages won t display correctly in a browser yet because the necessary include files still haven t been created. That ll soon change. 3. In index.php, highlight the nav unordered list as shown in bold in the previous listing, and cut (Ctrl+X/Cmd+X) it to your computer clipboard. 4. Create a new file called menu.inc.php in the includes folder. Remove any code inserted by your editing program; the file must be completely blank. 5. Paste (Ctrl+V/Cmd+V) the code from your clipboard into menu.inc.php and save the file. The contents of menu.inc.php should look like this:<br /> <ul id="nav"> <li><a href="index.php" id="here">Home</a></li> <li><a href="journal.php">Journal</a></li> <li><a href="gallery.php">Gallery</a></li> <li><a href="contact.php">Contact</a></li> </ul> <p> Don t worry that your new file doesn t have a DOCTYPE declaration or any <html>, <head>, or <body> tags. The other pages that include the contents of this file will supply those elements. <br />Please visit <a href="http://domain.b5websitehosting.com">Domain Name Hosting</a> services for high quality webhost to host and run your jsp applications. </p> </div> <p class="postmetadata">Posted in <a href="http://mysql5.armadillowebhosting.com/category/mysql5/" title="View all posts in MYSQL5" rel="category tag">MYSQL5</a> | <a href="http://mysql5.armadillowebhosting.com/mysql5/php-solutions-dynamic-web-design-made-easy-a-managed-web-hosting/#respond" title="Comment on PHP SOLUTIONS: DYNAMIC WEB DESIGN MADE EASY A (Managed web hosting)">No Comments »</a></p> </div> <div class="navigation"> <div class="alignleft"><a href="http://mysql5.armadillowebhosting.com/2007/11/page/3/">« Previous Entries</a></div> <div class="alignright"><a href="http://mysql5.armadillowebhosting.com/2007/11/">Next Entries »</a></div> </div> </div> <div id="sidebar"> <ul> <li> <form method="get" id="searchform" action="http://mysql5.armadillowebhosting.com/"> <div><input type="text" value="" name="s" id="s" /> <input type="submit" id="searchsubmit" value="Search" /> </div> </form> </li> <!-- Author information is disabled per default. Uncomment and fill in your details if you want to use it. <li><h2>Author</h2> <p>A little something about you, the author. Nothing lengthy, just an overview.</p> </li> --> <li> <p>You are currently browsing the <a href="http://mysql5.armadillowebhosting.com/">Jsp, Tomcat, J2Ee, Hibernate Programming, Http Web Server Blog</a> weblog archives for November, 2007.</p> </li> <li><h2>Archives</h2> <ul> <li><a href='http://mysql5.armadillowebhosting.com/2008/06/' title='June 2008'>June 2008</a></li> <li><a href='http://mysql5.armadillowebhosting.com/2008/05/' title='May 2008'>May 2008</a></li> <li><a href='http://mysql5.armadillowebhosting.com/2008/04/' title='April 2008'>April 2008</a></li> <li><a href='http://mysql5.armadillowebhosting.com/2008/03/' title='March 2008'>March 2008</a></li> <li><a href='http://mysql5.armadillowebhosting.com/2008/02/' title='February 2008'>February 2008</a></li> <li><a href='http://mysql5.armadillowebhosting.com/2008/01/' title='January 2008'>January 2008</a></li> <li><a href='http://mysql5.armadillowebhosting.com/2007/12/' title='December 2007'>December 2007</a></li> <li><a href='http://mysql5.armadillowebhosting.com/2007/11/' title='November 2007'>November 2007</a></li> <li><a href='http://mysql5.armadillowebhosting.com/2007/10/' title='October 2007'>October 2007</a></li> <li><a href='http://mysql5.armadillowebhosting.com/2007/09/' title='September 2007'>September 2007</a></li> <li><a href='http://mysql5.armadillowebhosting.com/2007/08/' title='August 2007'>August 2007</a></li> <li><a href='http://mysql5.armadillowebhosting.com/2007/07/' title='July 2007'>July 2007</a></li> <li><a href='http://mysql5.armadillowebhosting.com/2007/05/' title='May 2007'>May 2007</a></li> <li><a href='http://mysql5.armadillowebhosting.com/2007/04/' title='April 2007'>April 2007</a></li> </ul> </li> <li><h2>Categories</h2> <ul> <li><a href="http://mysql5.armadillowebhosting.com/category/mysql5/" title="View all posts filed under MYSQL5">MYSQL5</a> (544) </li> </ul> </li> </ul> </div> <hr /> <div id="footer"> <!-- If you'd like to support WordPress, having the "powered by" link someone on your blog is the best way, it's our only promotion or advertising. --> <p> Jsp, Tomcat, J2Ee, Hibernate Programming, Http Web Server Blog is proudly powered by <a href="http://www.visionwebhosting.net/">cheap hosting</a> <br /><a href="feed:http://mysql5.armadillowebhosting.com/feed/">Entries (RSS)</a> and <a href="feed:http://mysql5.armadillowebhosting.com/comments/feed/">Comments (RSS)</a>. <!-- 15 queries. 0.280 seconds. --> </p> </div> </div> <!-- Gorgeous design by Michael Heilemann - http://binarybonsai.com/kubrick/ --> </body> </html>