Your album page already has an Embed Slideshow feature in the navigation pane,
allowing you to include a slideshow gadget into other web pages.
But on the bottom right side of the page, you will also find a link called RSS.
Right-click it, and copy the link to your clipboard using the menu that appears.
Now, install the Google Pack screensaver, which can render a photo feed into
something good-looking. Go to http://pack.google.com and in the software options,
uncheck everything but the box reading Google Photos Screensaver. Click Download...
MARKETING YOUR SITE AND TRACK VISITORS
PMA11:48
MARKETING YOUR SITE AND TRACK VISITORS A page is very popular. Think about why that might be the case. Was your article especially well-written? Was your information hitting on a recent trend? Were you offering a great product? Knowing the reason for this might inspire some changes on the page, or give you ideas for new material elsewhere on your site. A specific search query results in a lot of people finding your site via Google. Take a look at the keywords people enter, and check out what page they...
php-use the header() function-php
PMA11:39
An HTTP (HyperText Transfer Protocol) header is used to send information back and forth between the server and the client (the Web browser). Normally this information is in the form of HTML, which is why the address for Web pages begins with http://.But HTTP headers are a complicated enough subject to warrant a little more attention. There are actually dozens upon dozens of uses for HTTP headers, all of which you can take advantage of using PHP's header() function.. Here I'll demonstrate the most frequently used purpose—redirecting the user from...
Maximum Performance from MySQL
PMA09:21
Optimization is a complicated task because it ultimately requires understanding of the whole
system. While it may be possible to do some local optimizations with small knowledge of
your system/application, the more optimal you want your system to become the more you
will have to know about it.
So this chapter will try to explain and give some examples of di erent ways to optimize
MySQL. But remember that there are always some (increasingly harder) additional ways
to make the system even faster.
Optimization Overview
The most important part...
20 best websites to create free blogs
PMA10:00
20 best websites to create free blogs
Blog is one of the most popular platforms for Make Money.that allows users to create free blog with very useful info,news,knowledgeof many things.You can post all kinds of info,articles,Link,datapopular topics for free. blogging is easily make interface to Connect People.
http://www.livejournal.com/
http://blogetery.com/
http://www.blogsome.com/
http://edublogs.org/
http://wordpress.com/
http://opendiary.com
http://blog.com/
http://www.blogger.com
http://www.tumblr.com/
https://posterous.com
http:...
PHP-Renaming Files and Directories
PMA00:57
Renaming Files and Directories
There are a few useful file and directory functions built-in to
PHP which I'll cover in brief here. They include renaming and deleting files as
well as listing files located in a directory. I'll review the syntax for some of
them first and then demonstrate how they function within the context of a very
useful PHP script.
First, there is the rename() function, which works as
you would expect it to:
rename ("filenameold", "filnamenew");
It can be used on either files or directories.
Renames...
top 20 free website templates download
PMA11:46
top 20 free website templates download
http://www.websitetemplatesonline.com/http://www.dcarter.co.uk/templates.htmlhttp://www.mytemplatez.com/http://www.themesbase.com/http://www.freecsstemplate.nethttp://www.free-css-templates.com/css-templates/http://www.nuviotemplates.com/http://www.bestfreetemplates.info/http://justfreetemplates.com/http://www.freecsstemplates.org/http://www.opendesigns.org/http://www.templatemo.com/page/1http://freetemplatesdirect.com/free-templates.htmlhttp://opensourcetemplates.org/http://www.templateholder.com/free...
php-best top 20 Open Source Content Management Systems
PMA10:12
best top 20 php Open Source Content Management Systems
php-best top 20 Open Source Content Management Systems
All this open source content management system written in PHP/mySQL and
well configured themes and modules for rich web sites.
this help building your site high structured web application project. Every cms system are used to organize content management,info,blogging.
Open source content management system - download free web design templates the open group works towards enabling access to integrated information within and between...
php urlencode - Make a strong GET Query String
PMA08:43
php urlencode
URL-encodes a string, converting spaces
into plus (+ ) signs.
urlencode() makes a string safe to use as part of a URL. It does this
by encoding every character within the string that may be misinterpreted by a
transport agent (such as an email server) or interpreted as a URI delimiter—for
example, the at sign (@), hash (#), and question mark
(?) symbols.
urlencode() encodes characters
<?php
$hass_url = urlencode ($acc_url);
?>
This conversion is done so that the encoded string will...
php implode array elements
PMA07:47
php implode array elements
Join array elements with a string
string.
implode(string, arraypieces)
Returns a string containing a string representation of all the array elements in the same order,
string between each element.
Example 1. Implode() example
$dash = implode ("-", $array);
join(), andsplit().
join(string, arraypieces)
The implode() function inserts a comma after every
array element and returns a string with the inserted commas. We eliminate the
last two characters of the string by using the substr() function...