<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Hi Tech Stuff Reviews &#038; Updates &#187; Php</title>
	<atom:link href="http://thetoptrends.net/category/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://thetoptrends.net</link>
	<description></description>
	<lastBuildDate>Sun, 01 Aug 2010 06:36:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Php date loop</title>
		<link>http://thetoptrends.net/php-date-loop/</link>
		<comments>http://thetoptrends.net/php-date-loop/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 01:02:40 +0000</pubDate>
		<dc:creator>hitechist</dc:creator>
				<category><![CDATA[Php]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Don]]></category>
		<category><![CDATA[php programmer]]></category>
		<category><![CDATA[program logic]]></category>
		<category><![CDATA[Query]]></category>
		<category><![CDATA[Use]]></category>
		<category><![CDATA[web based software]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[This article is about &#8220;Php date loop&#8221;, you can find here a huge variety of articles about &#8220;Php date loop&#8221;:
You don&#8217;t need to remember functions, classes and specific solutions to be a good programmer. They are online, accessible at any time. And being a PHP developer you are unlikely to do much important work without [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>This article is about &#8220;Php date loop&#8221;, you can find here a huge variety of articles about &#8220;Php date loop&#8221;:</p>
<p>You don&#8217;t need to remember functions, classes and specific solutions to be a good programmer. They are online, accessible at any time. And being a PHP developer you are unlikely to do much important work without being connected to the internet. Then what makes a good programmer? For me a good PHP programmer means someone who is efficient &#8211; who can solve problems and build quality web based software quickly and in a way that allows easier maintenance and extending of the program.</p>
<p>So being a good PHP programmer means mostly to write a good code with less effort and time spent. And here is what does that mean &#8211; several main things:</p>
<p>- Code that is short. I don&#8217;t mean putting everything on one line like some Perl coders do, but writing less waste, reusing code and keeping it modular<br />
<br />- Code that is easy to maintain and extend &#8211; this again means modular, but also a well commented PHP code.<br />
<br />- Code that doesn&#8217;t overload the server &#8211; you shouldn&#8217;t get obsessed by this but it&#8217;s important to keep the server overload low</p>
<p>How to write such code? There isn&#8217;t a specific recipe &#8211; every developer has its own style regardless the fact that many use frameworks or follow specific guidelines. So I&#8217;m not going to offer you a recipe. Instead of that here are seven of the best practices I follow to write better PHP (and not only PHP) code. If you use them too, you can drastically improve your efficiency as a developer.</p>
<p>1. Use alternative PHP syntax in templates:<br />
<br />I really hope you use templates, to begin with. If you are messing the HTML output directly into your scripts, you need to work on this first. If you already follow the concept to separate your design from the program logic, you are either using some template engine (usually a dead end reducing productivity) or placing a bit of PHP code inside the templates (loops, if/else statements etc). You can add some more cleanness to your views by using the alternative PHP syntax instead of the standard one with &#8220;{&#8221; and &#8220;}&#8221;. Using foreach: / endforeach;, if: endif; for: endfor, etc. keeps the PHP code on less lines in the view, helps knowing when a loop is opened and closed and generally looks better.</p>
<p>You can learn more about the alternative PHP syntax on the official PHP site &#8211; just search for &#8220;Alternative syntax for control structures&#8221;.</p>
<p>2. Everything capsulated:<br />
<br />You know about the DRY, don&#8217;t you? Don&#8217;t Repeat Yourself. Don&#8217;t copy-paste code. Always use functions and classes that will encapsulate often executed tasks. I know this is ABC of programming, but are you really really doing it? If one SQL query or code block is repeating itself 3 or more times in the application, then it should be a method or function. If it is repeating itself with slight variations, it should be a method or function as well (one that takes arguments). Here is what encapsulation gives you:</p>
<p>- less code, less writing<br />
<br />- ability to make changes across the entire app with a single code change<br />
<br />- clean and understandable code</p>
<p>These three things really make a better code. Let&#8217;s get a very simple example: which you think is better &#8211; formatting the date in the SQL query or in the PHP code? Both are fine if you encapsulate the format. If you use the standard PHP date() function everywhere or the SQL date formatting function, passing the format that the client requires, to each call, what will happen if the client wants a change? You&#8217;ll have to change it everywhere. To avoid that, build your own function to format the date or just put the formatting string (the &#8220;Y/m/d H:i A&#8221; thing for example) in a constant, so you can change it any time.</p>
<p>3. Use a DB object:<br />
<br />There are many ways to handle this, including ODBC, PDO and others. Whatever you do, don&#8217;t put mysql_query() or mssql_query() (or whatever) directly in your code. It&#8217;s not that you are going to change the DB engine ten times in the project &#8211; in fact in eight years in web development I had to change the DB engine of an existing project just a couple of times. It&#8217;s again about keeping the code short, readable and better. For example I have a DB object with methods that return a single value, single array or multiple array from a DB query. This way instead of writing:</p>
<p>$sql=&#8221;SELECT * FROM some_table&#8221;;<br />
<br />$result=mysql_query($sql);</p>
<p>and then using $result in some construction like while($row=mysql_fetch_array($result)), I just write:</p>
<p>$sql=&#8221;SELECT * FROM some_table&#8221;;<br />
<br />$some_things=$DB-&gt;aq($sql);</p>
<p>And I have the result in $some_things. (Note: don&#8217;t use this when retrieving thousands of records at once, it will exhaust the server memory).</p>
<p>4. Use CRUD Functions:<br />
<br />Just in case you don&#8217;t know, CRUD comes from CReate, Update, Delete. Create functions or object methods which will do this work for you or use the well known ActiveRecord. Do this instead of writing long SQL queries with tens of fields listed. This is going to save you a lot of time. It&#8217;s going to work automatically when you add or remove a field in the HTML form. Isn&#8217;t that great?</p>
<p>5. Debugging is your best friend:<br />
<br />OK this point isn&#8217;t directly related to writing a better code &#8211; it&#8217;s more related to being a better programmer however. If something doesn&#8217;t work, you are not likely to fix it just by thinking hard or by looking at hundreds of lines of code. It&#8217;s not going to happen by swearing either. It&#8217;s going to happen by debugging.</p>
<p>Debugging is the action of going back following the logic of your program and finding the place where it works wrong or doesn&#8217;t work. It doesn&#8217;t matter if you use a debugger or just print_r() and echo() in various places of your code. The important thing is to trace backwards. Start from the current place &#8211; is there something wrong in it? If yes, go back few lines before the output/result happens. Is it still wrong? If yes, keep going few lines back. If no, then you know where exactly is the wrong piece of code &#8211; after this current line and before the line when your latest &#8220;is it wrong?&#8221; test returned true. I may sound bold, but I&#8217;ll say that this is the most important skill in programming (and not only) ever: to be able to go back and trace the route of the problem. If you learn to do this, you will be able to solve any solvable problem.</p>
<p>6. Mind the names:<br />
<br />A code that uses meaningful variable names is so much better &#8211; at any time you read it you know what is happening &#8211; is there a product currently modified, is it an array of users, is it the ID of the logged in, or is it anything else. I am not talking about Hungarian notation &#8211; just use variable names which correspond to the subject they represent and show whether it&#8217;s in singular or plural form. Don&#8217;t use variable names like $rows, $row, $varArr etc. Instead of that use $products when you are working with products, use $user when you are working with a single user, use $is_logged or $isLogged when you need a boolean variable showing whether the user is logged in the system. Use names that matter and be consistent in that. You&#8217;ll thank yourself later for writing such code. Other developers will thank you too.</p>
<p>7. Reduce DB queries:<br />
<br />It&#8217;s a common sense, but how many developers really do it? How many of them spend hours improving some unimportant thing like moving a sizeof() out of a loop and at the same time send a DB query in the very same loop? DB queries are the most server power consuming task in many web applications. Here are several ways to reduce the number of queries in your code:</p>
<p>- Use joins and left joins.<br />
<br />- Use inner selects when joins and left joins won&#8217;t do the job.<br />
<br />- Use views and temporary tables.<br />
<br />- Sometimes you&#8217;ll need to check something for a number of records and the previous three solutions won&#8217;t work. Instead of running a query each time, isn&#8217;t it possible to run one query for collection A, one for collection B and then use a foreach loop in PHP to check the condition? Very often it is. Be creative.</p>
<p>Reducing the number of queries is vital for web applications that are going to be used by many users at the same time. Sometimes you may need to sacrifice code shortness for that. This will not make your code worse &#8211; you should give the things their correct priority.</p>
<p>Are you following any of these guidelines in your code now?</p>
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td valign="top">
<p>I&#8217;m using as much of them as I can. For example some of these guidelines are used in my <a target="_new" href="http://calendarscripts.info/online-exam-software.html">php online exam</a> and in <a target="_new" href="http://calendarscripts.info/event-calendar-software.html">Eventy calendar software</a>.</p>
<p style="margin-bottom:1em;">Article Source:<br />
						<a href="?expert=Bobby_Handzhiev"><br />
							http://EzineArticles.com/?expert=Bobby_Handzhiev						</a>
					</p>
</td>
<td>
<div style="padding:5px; margin:0 0 0 10px;border:1px solid #fff;background-color:#fff;">
</td>
</tr>
</table>
<p>	<!--UdmComment--><br />
	<!||Printable - How to Write Better PHP Code - These 7 Ways</p>
<p><u>More info about Php date loop:</u></p>
<p><a href=http://www.musclebuildingdirectory.com/musclebuildingtips/post-contest-chest-shoulder-tricep-workout/>Post Contest Chest Shoulder &amp; Tricep Workout | Muscle Building Tips</a></p>
<p>&#8230; Alexey, Alimentos, Allan, AllBlacks, Alleviate, Alloy, allstarhouston.m4v, allstarhouston.wmv, Almost, Aloe, Alpha, Already, Alternate, alternating, <b>Alternative</b>, <b>Alternatives</b>, Alvino, Always, Amazing, Amazingly, AMAZON, America, American <b>&#8230;.</b> Fatal, FatBurning, Father, Fatloss, Fats, fatten, Fatties, Favorite, Fear, Fears, Features, Featuring, Feed, Feeding, Feel, FEELING, Fees, female, Females, Ferrigno, Ferruggia, Fiber, <b>Fibromyalgia</b>, Fight, Fighters, Figure, Filmed &#8230;</p>
<p><a href=http://depressionhelpebooks.com/2010/07/02/fibromyalgia-book-natural-cure-for-fibromyalgia/><b>Fibromyalgia</b> Book â?? Natural Cure For <b>Fibromyalgia</b> | Help for <b>&#8230;</b></a></p>
<p>Natural cure for <b>fibromyalgia</b> is much preferred by <b>fibromyalgia</b> patients because it is a safer <b>alternative</b> compared to traditional medications. Traditional medications have a hard time treating <b>fibromyalgia</b> symptoms. &#8230;</p>
<p><a href=http://alchemystix.com/?p=1138>Magnet Therapy Â» Alchemystix</a></p>
<p>Magnet therapy, which is a -billion market worldwide, is a form of <b>alternative</b> medicine which claims that magnetic fields have healing powers. Magnet therapy stimulates the earthÃ¢â?¬â?¢s magnetic field and places your body in an optimum environment &#8230; Ã¢â?¬Â¢ Researchers at Tufts University School of Medicine in Boston found that magnet therapy helped relieve muscle pain caused by <b>Fibromyalgia</b>. Ã¢â?¬Â¢ The New Your Medical College of Valhalla study report found relief from numbness, &#8230;</p>
<p><a href=http://riskfreereview.com/rheumatism-and-arthritis-whats-the-difference/>Rheumatism and Arthritis: What&#8217;s the difference? | Risk Free Review</a></p>
<p>The cure and <b>treatment</b> for different types of arthritis or rheumatism depends on certain conditions. Doctors underscore the need for specific <b>treatment</b> for specific cases of arthritis and rheumatism. After all, the different types of arthritis and &#8230; Among the most common types of rheumatic diseases are ankylosing spondylitis, <b>fibromyalgia</b>, lupus, scleroderma, polymyositis, dermatomyositis, polymyalgia rheumatica, bursitis, tendinitis, vasculitis, carpal tunnel syndrome, &#8230;</p>
<p><a href=http://business44.com/2010/07/is-it-hard-to-day-trade-the-forex-market/>Is it Hard to Day Trade the Forex Market? | Business44.Com <b>&#8230;</b></a></p>
<p>Acne Â· Allergies Â· <b>Alternative</b> Medicine Â· Anti Aging Â· Cancer Â· Dental Care Â· Disabilities Â· Diseases and Conditions Â· Hair Loss Â· Hearing Â· Medical Tourism Â· Medicine Â· Men&#8217;s Health Â· Mental Health Â· Nutrition Â· Plastic Surgeries <b>&#8230;..</b> Femme, Feng, Fenwick, Ferranti, Ferrari, Ferret, Ferrets, Fertility, Fertilizer, Fetishes, Fever, FHA/HUD, FHTM, Fiat, Fiberglass, Fibers, Fibroids, <b>Fibromyalgia</b>, FICO, Fiction, Fiction&#8217;s, Fictional, Fido, Field, Fieldboston, fieldonline &#8230;</p>
<p>This post was mainly about Php date loop, you are welcomed to comment here about <b>Php date loop</b>.<br />
<h4>Related Blogs</h4>
<ul class="pc_pingback">
<li class="hdl" style="list-style: none">Related Blogs on <b>Php date loop</b></li>
<li><a href="http://blog.ynema.com/?p=244">zsh tips | ./blog.ynema.com</a></li>
<li><a href="http://www.acidavengers.co.uk/code/php/creating-a-php-based-irc-bot/">Creating a <b>PHP</b> based IRC Bot « Acid Technologies</a></li>
</ul>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://thetoptrends.net/php-date-loop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Loop date in php</title>
		<link>http://thetoptrends.net/loop-date-in-php/</link>
		<comments>http://thetoptrends.net/loop-date-in-php/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 02:32:47 +0000</pubDate>
		<dc:creator>hitechist</dc:creator>
				<category><![CDATA[Php]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Handy]]></category>
		<category><![CDATA[output]]></category>
		<category><![CDATA[php extension]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[websites url]]></category>
		<category><![CDATA[xml type]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[This article is about &#8220;Loop date in php&#8221;, you can find here a huge variety of articles about &#8220;Loop date in php&#8221;:
NOTE: Wherever you see [url] please insert your websites url in place of [url].
Everywhere I look I can find tutorials but rarely are they complete. The tutorial I am about to write is meant [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>This article is about &#8220;Loop date in php&#8221;, you can find here a huge variety of articles about &#8220;Loop date in php&#8221;:</p>
<p>NOTE: Wherever you see [url] please insert your websites url in place of [url].</p>
<p>Everywhere I look I can find tutorials but rarely are they complete. The tutorial I am about to write is meant to be a complete tutorial. Sure you can add more options to the RSS file itself but what I mean by complete is that it will work for anyone if the principals that are outlined here are followed. Without further delay lets jump right into build a dynamic RSS feed using PHP and MySQL</p>
<p>To begin our PHP based RSS feed we need to do one little thing first. Take a look at your &#8220;.htaccess&#8221; file which is generally located in the root directory of web server. It is the file that is used for doing URL rewrites, 301 redirects etc. Every Apache server should have it so look for it. If you are using dreamweaver an easy to get the file is to create it in the site manager, i.e. right-click and create a new file. Rename the file &#8220;.htaccess&#8221; and then right click on your newly created file and click &#8220;Get&#8221;. Again this is only for users of Dreamweaver. I am making this more complicated than it should be. Look for.htaccess in your web server root. Enough said</p>
<p>Once we have our.htaccess file found we need to make a change. Since our RSS file will be of the PHP extension i.e. rss.php and not of the xml type. We need.htaccess to know that files with the type.xml shoule be interpreted as.php files. To do this we enter the following in our.htaccess file:</p>
<p>AddType application/x-httpd-php.xml</p>
<p>With our.htaccess file ready to go we now need to begin writing the PHP for our RSS feed. Our file will be broken into four sections. The first is the header which tells the browser that the file is of type XML. The second section is the head of our RSS file. Its everything that you could make static about the channel, i.e. the basic info related to the RSS feed. Our third sections is where it gets nifty. We create a database connection and use it to create our RSS feed. We then need to loop through each of the items we want in our database and output them as xml. Finally our fourth part is all the output that is required to close the channel. There is little to it aside from a few echo commands but it is a separate section in its own minor way.</p>
<p>First we need to create a new php file, I chose to name mine rss.php, you can name yours whatever you like. Once we have our file open we begin with our first section:</p>
<p><?php</p>
<p>//Set XML header for browser</p>
<p>header(&#8217;Content-type: text/xml&#8217;);</p>
<p>?></p>
<p>Before we do anything we want to send a message to the browser that informs it that it is dealing with an XML file. If we did not pass this information to the browser our dynamic RSS feed would not work. As simple as it sounds that is it for our first part of our RSS file.</p>
<p>In our next section we need to begin creating the structure of our XML file. There are few ways to do this. One is with the echo command. The other is through the use of variables. I have used both and personally prefer the variable method since it seems simpler in my mind. Therefore that is the method I will demonstrate. Here is our code (it includes the code from our first section):</p>
<p>//Set XML header for browser</p>
<p>header(&#8217;Content-type: text/xml&#8217;);</p>
<p>//Create the heading/channel info for RSS Feed</p>
<p>$output = &#8221;;</p>
<p>$output.= &#8221;;</p>
<p>$output.= &#8221;;</p>
<p>$output.= &#8216;Your RSS Feed Description&#8217;;</p>
<p>$output.= &#8216; [url]&#8216;;</p>
<p>?></p>
<p>Here is what we did with the second section. First we created a variable $output. We set it equal to. However once we have the value set we do not overwrite it. We instead use the operator &#8220;.=&#8221; which means simply add to the current value. So for example if we said that $some-variable = &#8220;a string&#8221;. We then used our &#8220;.=&#8221; operator to add to the value like so $some-var.= &#8221; like some var&#8221;. Next if we were to echo our variable $some-variable it would read &#8220;a string like some var&#8221;. We are taking our variable and adding all of the xml tags to it to create one contiguous xml document stored in one variable, $output. One other thing to note is that for the title, description and link tags you should add in your sites information. While I don&#8217;t think anyone would intentionally use the info I had between the tags it is easy to forget little things like that, which is why I mention it.</p>
<p>For our third section we get down to the meat and bones of our php generated RSS page. What we are going to do is connect to a MySQL database and grab all the pertinent information we need. Then we are going to create individual xml items for each of the new entry or article that we have. This is all done when the user accesses the RSS page. Not before. The page is dynamic not static. For intents and purposes we don&#8217;t have an RSS page until someone accesses it. Now lets get to the code:</p>
<p>//Set XML header for browser</p>
<p>header(&#8217;Content-type: text/xml&#8217;);</p>
<p>//Create the heading/channel info for RSS Feed</p>
<p>$output = &#8221;;</p>
<p>$output.= &#8221;;</p>
<p>$output.= &#8221;;</p>
<p>$output.= &#8216;Your RSS Feed Description&#8217;;</p>
<p>$output.= &#8216; [url]&#8216;;</p>
<p>//Individual Items of our RSS Feed</p>
<p>//Connect to a database and and display each new item in our feed</p>
<p>//Connect to DB</p>
<p>$host = &#8220;localhost&#8221;; //Name of host</p>
<p>$user = &#8220;cmsuser&#8221;; //User name for Database</p>
<p>$pass = &#8220;mypass&#8221;; //Password for Database</p>
<p>$db = &#8220;my_database&#8221;; //Name of Database</p>
<p>mysql_connect($host,$user,$pass);</p>
<p>mysql_select_db($db);</p>
<p>//Create SQL Query for our RSS feed</p>
<p>$sql = &#8220;SELECT `title`, `link`, `description`, `date` FROM `articles`ORDER BY `date` DESC LIMIT 0, 15&#8243;;</p>
<p>$result = mysql_query($sql) or die (&#8221;Query couldn&#8217;t be executed&#8221;);</p>
<p>//Create Loop for the individual elements in the RSS item section</p>
<p>while ($row = mysql_fetch_array($result))</p>
<p>{</p>
<p>$output.= &#8221;;</p>
<p>$output.= &#8221;;</p>
<p>$output.= &#8216; &#8216;.$row['link'].&#8221;;</p>
<p>$output.= &#8221;.$row['description'].&#8221;;</p>
<p>$output.= &#8216;</p>
<p>&#8216;.$row['date'].&#8221;;</p>
<p>$output.= &#8221;;</p>
<p>}</p>
<p>?></p>
<p>Now a great deal has occurred in this section so let me try and explain everything clearly. First lets start with the comment &#8220;Connect to DB&#8221;. Here we need to connect to a database. Normally I write a function earlier on and simply call it when I want to connect to a database and run a query. However I can not assume that you have already written one so we will go through writing one together. First we define variables that will house the necessary information for the &#8220;mysql_connect&#8221; and &#8220;mysql_select_db&#8221; functions. The information we need to store is our hostname, generally its &#8220;localhost&#8221;, our user name for the database, our password, and the name of the database. Once we have that saved we use it in the function &#8220;mysql_connect&#8221; which is used to make a connection a mysql database, once we establish the connection we then need to select a database with the &#8220;mysql_select_db&#8221; statement. Now that we have connected to our database lets examine how we go about getting the information we need.</p>
<p>Now that we are connected we must run a query to get the information we need. For the example I have made a few assumptions the first being that the name of the database is articles and that it contains the four columns: `title`, `link`, `description`, `date` and that they are named as such. I also limited the result to 16, by using the statement &#8220;&#8230;LIMIT 0,15&#8243; which means only show rows 0 to 15. You can set it to whatever you would like or you can remove it completely and have no limit on the number of entries in your RSS feed. Okay for small sites, awful for large ones. Use your discretion here. Now that we have the query constructed I want to point out one thing. Normally you see people using the &#8220;SELECT *&#8230;&#8221; statement when they run queries. Not only do I think its bad practice but why get more information that you need, it takes longer and makes your site run just ever so slightly slower. Therefore I recommend that when you form your sql queries you implicitly state which fields you want rather than using a &#8220;SELECT *&#8230;&#8221; statement. Now that we have our query we need run it by using the command &#8220;mysql_query&#8221; and pass the results into a variable, cleverly known as $result. If you notice that after our &#8220;mysql_query($sql)&#8221; statement I have &#8220;or die(&#8230;)&#8221;. What that statement does is if there is an error it kills the query and terminates the function then echoes whatever error message you place in the brackets. Handy for figuring out where things may go wrong.</p>
<p>So far we have connected to a database and run a query outputting the results into a variable, $result. Now we need to put this all into a neat little RSS item. To do this we need to create a loop, What our loop will do is go through our query row by row and pull the information from each row and do whatever we want with it. In this case we want to store it. To do so we create a while loop which basically reads while there are rows still left in our result variable. We need to do whatever code is between the brackets {&#8230; }. There are other ways to have formed this loop but for now the most direct method is the one I have listed. Now that we have our rows in a variable $row we need to add them to our xml file. To do that we use our good friend &#8220;.=&#8221;and basically add in the information for each item we wish to create. There are many more tags you can use with your RSS feed. I have only chosen to use the &#8220;title&#8221;, &#8220;link&#8221;, &#8220;description&#8221;, &#8220;pubDate&#8221; since that was all I felt like i needed and this is not an article on the structure of RSS but how to generate them dynamically.</p>
<p>We have completed three of our four steps. Since we have all of our items created, we did it previously with the while loop that will cycle through each result in the database and add it to our variable with the appropriate tags, we need to finish off our file and display it to the user. To do this we use the following code:</p>
<p>//Set XML header for browser</p>
<p>header(&#8217;Content-type: text/xml&#8217;);</p>
<p>//Create the heading/channel info for RSS Feed</p>
<p>$output = &#8221;;</p>
<p>$output.= &#8221;;</p>
<p>$output.= &#8221;;</p>
<p>$output.= &#8216;Your RSS Feed Description&#8217;;</p>
<p>$output.= &#8216; [url]&#8216;;</p>
<p>//Individual Items of our RSS Feed</p>
<p>//Connect to a database and and display each new item in our feed</p>
<p>//Connect to DB</p>
<p>$host = &#8220;localhost&#8221;; //Name of host</p>
<p>$user = &#8220;cmsuser&#8221;; //User name for Database</p>
<p>$pass = &#8220;mypass&#8221;; //Password for Database</p>
<p>$db = &#8220;my_database&#8221;; //Name of Database</p>
<p>mysql_connect($host,$user,$pass);</p>
<p>mysql_select_db($db);</p>
<p>//Create SQL Query for our RSS feed</p>
<p>$sql = &#8220;SELECT `title`, `link`, `description`, `date` FROM `articles`ORDER BY `date` DESC LIMIT 0, 15&#8243;;</p>
<p>$result = mysql_query($sql) or die (&#8221;Query couldn&#8217;t be executed&#8221;);</p>
<p>//Create Loop for the individual elements in the RSS item section</p>
<p>while ($row = mysql_fetch_array($result))</p>
<p>{</p>
<p>$output.= &#8221;;</p>
<p>$output.= &#8221;;</p>
<p>$output.= &#8216; &#8216;.$row['link'].&#8221;;</p>
<p>$output.= &#8221;.$row['description'].&#8221;;</p>
<p>$output.= &#8216;</p>
<p>&#8216;.$row['date'].&#8221;;</p>
<p>$output.= &#8221;;</p>
<p>}</p>
<p>//Close RSS channel</p>
<p>$output.= &#8221;;</p>
<p>$output.= &#8221;;</p>
<p>//Display output in browser</p>
<p>echo $output;</p>
<p>?></p>
<p>Here is our completed code in all its glory, all we have added is two more statements that append our variable with the following tags &#8220;&#8221; and &#8220;&#8221; which closes our channel and RSS tags respectively, that we opened earlier. After that we need to display the information so that the web browser can see it. To do this we simply use the echo command and echo our variable $output that we used to store all the information previously. You should now be able to see what I meant earlier in the article when I suggested that one could use echo instead of adding the information to a variable, but that&#8217;s besides the point. What matters now is that you got a fully working RSS feed that you never have to toy with again unless its to add more information. Hope you enjoy it and can put it to good use!</p>
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td valign="top">
<p>Harold Pettegrove NorthRockSEO <br /> <a target="_new" href="http://www.squidoo.com/northrockseo">More Articles by NorthRockSEO</a> <br /> <a target="_new" href="http://www.northrockseo.com/articles/dynamic-rss-feed-with-php">Dynamic RSS Feed Article</a></p>
<p style="margin-bottom:1em;">Article Source:<br />
						<a href="?expert=Harold_Pettegrove"><br />
							http://EzineArticles.com/?expert=Harold_Pettegrove						</a>
					</p>
</td>
<td>
<div style="padding:5px; margin:0 0 0 10px;border:1px solid #fff;background-color:#fff;">
</td>
</tr>
</table>
<p>	<!--UdmComment--><br />
	<!||Printable - Build a Dynamic RSS Feed With PHP and MySQL</p>
<p><u>More info about Loop date in php:</u></p>
<p><a href=http://riskfreereview.com/rheumatism-and-arthritis-whats-the-difference/>Rheumatism and Arthritis: What&#8217;s the difference? | Risk Free Review</a></p>
<p>The cure and <b>treatment</b> for different types of arthritis or rheumatism depends on certain conditions. Doctors underscore the need for specific <b>treatment</b> for specific cases of arthritis and rheumatism. After all, the different types of arthritis and &#8230; Among the most common types of rheumatic diseases are ankylosing spondylitis, <b>fibromyalgia</b>, lupus, scleroderma, polymyositis, dermatomyositis, polymyalgia rheumatica, bursitis, tendinitis, vasculitis, carpal tunnel syndrome, &#8230;</p>
<p><a href=http://chronicpainramblings.blogspot.com/2010/07/wishing-and-wanting-to-ride.html>Chronic Pain and Ramblings: Wishing and wanting to ride&#8230;</a></p>
<p>Changes in Hippocampal Metabolites After Effective <b>Fibromyalgia Treatment</b> &#8211; The Clinical Journal of Pain just published a case study that evaluates the impact of fibromyalgia on hippocampal brain metabolite ratios. Researchers at&#8230; The Health Matters Show With Cinda Crawford Â· Getting Well: <b>Alternative</b> Health Tools &#8211; Here&#8217;s a chance to explore the information and <b>alternative</b> health tools that people use to get well from illnesses like Fibromyalgia and Chronic Fatigue Sy. &#8230;</p>
<p><a href=http://www.cw-health.com/acupuncture-may-help-chronic-acute-asthma.html>Health news Â» Acupuncture may help chronic, acute asthma</a></p>
<p>From relief of postoperative pain and chemo-therapy nausea and vomiting to <b>treatment</b> for addiction, headache, menstrual cramps, tennis elbow, <b>fibromyalgia</b>, myofascial pain, osteoarthritis, low back pain, and carpal tunnel syndrome, studies have &#8230; says Louis Kiwala, LAc, MTOM(Master of Traditional Oriental Medicine), director of the New York Center for Acupuncture and <b>Alternative</b> Medicine and co-founder of the Institute for Advanced Pain Management in New York City. &#8230;</p>
<p><a href=http://www.vitaminssupplements.name/4oz-clipper-oil-3311.html>oz Clipper Oil 3311 Â¤ Best Nutrition Vitamins Supplements Â¤ Health <b>&#8230;</b></a></p>
<p>many things like skin care, inflammation, lowering cholesterol, lowering blood sugar, asthma, menstrual relief, rheumatoid arthritis, <b>fibromyalgia</b>, and gastritis. A lot of people use this product for the same reasons that a person would use fish oil, flax oil or other &#8230; <b>Alternative</b> Health Supplements offers a product called Krill Oil Rx. In Fish oil Omega-3 fatty acids are present as DHA and EPA in triglycerides, where Krill oil they are present as phospholipids. &#8230;</p>
<p>This post was mainly about Loop date in php, you are welcomed to comment here about <b>Loop date in php</b>.<br />
<h4>Related Blogs</h4>
<ul class="pc_pingback">
<li class="hdl" style="list-style: none">Related Blogs on <b>Loop date in php</b></li>
<li><a href="http://www.acidavengers.co.uk/code/php/creating-a-php-based-irc-bot/">Creating a <b>PHP</b> based IRC Bot « Acid Technologies</a></li>
</ul>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://thetoptrends.net/loop-date-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Phpbb iphone app</title>
		<link>http://thetoptrends.net/phpbb-iphone-app/</link>
		<comments>http://thetoptrends.net/phpbb-iphone-app/#comments</comments>
		<pubDate>Thu, 20 May 2010 04:06:29 +0000</pubDate>
		<dc:creator>hitechist</dc:creator>
				<category><![CDATA[Php]]></category>

		<guid isPermaLink="false">http://thetoptrends.net/phpbb-iphone-app/</guid>
		<description><![CDATA[This article is about &#8220;Phpbb iphone app&#8221;, you can find here a huge variety of articles about &#8220;Phpbb iphone app&#8221;:
There are some amazing websites on the net these days.  It used to be that if you wanted a really good website it would cost you thousands of dollars and months of time.  Not [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>This article is about &#8220;Phpbb iphone app&#8221;, you can find here a huge variety of articles about &#8220;Phpbb iphone app&#8221;:</p>
<p>There are some amazing websites on the net these days.  It used to be that if you wanted a really good website it would cost you thousands of dollars and months of time.  Not any more!  The quality and availability of website templates these days makes it easy for anyone to have an amazing website quickly and easily.</p>
<p>Initially you may be overwhelmed by the choices in templates for your site.  There are many sites that have many different templates available.  This is a good thing though.  Just take some time up front before you begin searching to identify the type of site you are going to make.  Once you have done this it will be easy to sort through the different templates as most good sites have them categorized for you.</p>
<p>Theme or category isn&#8217;t the only thing to decide however.  Once you&#8217;ve found the template you want to use for your website you then need to decide on the leve of customization you want for it.  If it is a good site then you will be able to change things like color, font and logo without to much trouble.  Other changes should also be avaialable to you but will be more difficult to implement.  You may need certain software or have to pay an additional fee for example.</p>
<p>A quick side-note on web hosting.  In choosing your template you should be sure of what features your hosting company provides you.  Depending on the template your server may need to support certain functions.  PHP is a good example.  Many free or discount hosting companies don&#8217;t provide scripting to their clients.  Be sure you check before choosing your template.</p>
<p>Some last notes on website templates.  Whether you need a template for a &#8211; system like osCommerece, PHP Nuke,phpBB or a custom site of your own, you can find one quickly and easily.  Some research and organization on your part will save you time and money in the end.  Don&#8217;t be fooled by some of the free template sites you see out there.  You always get what you pay for.</p>
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td valign="top">
<p>D. David Dugan recommends the web hosting solutions offered by DD&#038;C at <a target="_new" href="http://hosting.dugancom.com">http://hosting.dugancom.com</a> and the website templates at <a target="_new" href="http://templates.divinfo.com">http://templates.divinfo.com</a></p>
<p style="margin-bottom:1em;">Article Source:<br />
						<a href="?expert=D._David_Dugan"><br />
							http://EzineArticles.com/?expert=D._David_Dugan						</a>
					</p>
</td>
<td>
<div style="padding:5px; margin:0 0 0 10px;border:1px solid #fff;background-color:#fff;">
</td>
</tr>
</table>
<p>	<!--UdmComment--><br />
	<!||Printable - Making a Website Using Website Templates</p>
<p><u>More info about Phpbb iphone app:</u></p>
<p><a href=http://itunes.apple.com/ru/app/tapatalk-ro-forum-client-for/id335769233?mt=8>Tapatalk RO &#8211; Forum Client for vBulletin, IPBoard, phpBB &#8230;</a></p>
<p>Learn more, read reviews, and download Tapatalk RO &#8211; Forum Client for vBulletin, IPBoard, phpBB &amp; SMF by Quoord Systems on the iTunes App Store.</p>
<p><a href=http://www.phpbbhacks.com/download/9042>Tapatalk iPhone App Support (phpBB Hack/Mod, Style/Template &#8230;</a></p>
<p>phpBBHacks.com is a comprehensive directory of hacks, templates and related downloads for the phpBB forum software. &#8230; Tapatalk iPhone App Support &#8230;</p>
<p><a href=http://www.tapatalk.com/iphone/>Tapatalk &#8211; iPhone Android Nokia BlackBerry forum app for &#8230;</a></p>
<p>The app provides super fast forum access to any vBulletin, IPBoard, phpBB and &#8230; Tapatalk for iPhone / Android / Nokia / BlackBerry, Tapatalk Plug-in, Tapatalk &#8230;</p>
<p><a href=http://kosukelion.blog.com/2010/03/25/download-almost-an-angel-ipod/>Download Almost an Angel iPod</a></p>
<p>Watch full Almost an Angel movie, Buy Almost an Angel dvd Tagline: This time, the guy from down under is working for the man upstairs.. Who does he think he is? Movie title: Almost an Angel Year: 1990 Genres: Comedy IMDB rating: 5.10 Starring: Terry Dean &#8211; Hogan, Paul Steve Garner &#8211; Koteas, Elias Ac <b>&#8230;</b></p>
<p><a href=http://itunes.apple.com/us/app/tapatalk-forum-client-for/id307880732?mt=8>Tapatalk &#8211; Forum Client for vBulletin, IPBoard, phpBB &amp; SMF &#8230;</a></p>
<p>Learn more, read reviews, and download Tapatalk &#8211; Forum Client for vBulletin, IPBoard, phpBB &amp; SMF by Quoord Systems on the iTunes App Store.</p>
<p><a href=http://iphonecake.com/bbs/viewthread.php?tid=10309>Tapatalk &#8211; Forum Client for vBulletin and phpBB [1.6] [by ...</a></p>
<p>iPhoneCake   App Release   Tapatalk - Forum Client for vBulletin and phpBB [1.6] [by ... Create new topics and replies with the iPhone virtual keyboard ...</p>
<p><a href=http://www.phpbb.com/community/feed.php?f=70&#038;t=1650625>phpBB.com</a></p>
<p>Re: [RC] Android iPhone Nokia native app for phpBB &#8211; Tapatal &#8230; iPhone Nokia native app for phpBB &#8211; Tapatal. Re: [RC] Android iPhone Nokia native app for phpBB &#8211; Tapatal &#8230;</p>
<p><a href=http://www.apptism.com/apps/fourms-pro-bulletin-board-browser-phpbb-2-and-3>iPhone Apps &#8211; Fourms Pro &#8211; Bulletin Board Browser (phpBB 2 &#8230;</a></p>
<p>Find and Track iPhone Apps, Fast. Latest iPhone app and iPhone game updates, news, reviews, videos, and previews.</p>
<p><a href=http://theindependentcharacters.com/blog/?p=74>Tapatalk Enabled for The IC Forums</a></p>
<p>Tapatalk is a forum app for iPhone, BlackBerry, Android and Nokia. The app provides super fast forum access to any vBulletin, IPBoard, phpBB and SMF forums that have activated Tapatalk. We have enabled this for our forum users. If you are unfamiliar with it, you can find out more about it here: http <b>&#8230;</b></p>
<p><a href=http://www.profi-webmaster.com/thread-7514.html>phpBB.de Muss Domain an Hochschule abgeben</a></p>
<p>https://www.phpbb.de/ AuÃ?erdem heiÃ?t phpBB jetzt aspBB Weiter Meldungen des Tages: Microsoft bittet Google und Mozilla um Hilfe Internetabschaltung &#8211; Video anschauen! Ruthe.de wird abgeschaltet Nicht-lustig ebenfalls Fare well Edit: Hinweise auf geheimen Detektor am Teilchenbeschleuniger LHC Hessen <b>&#8230;</b></p>
<p><a href=http://www.solecollector.com/forums/iss-iphone-forum-app-giveaway-userguide-page-1-t1039294.html>Sole Collector: View topic &#8211; ISS iPhone FORUM APP &#8211; GIVEAWAY &#8230;</a></p>
<p>1. When uploading photos through the ISS app make sure you give it time as it has to &#8230; We are 10 days and counting away for the release of our second iPhone app. &#8230;</p>
<p>This post was mainly about Phpbb iphone app, you are welcomed to comment here about <b>Phpbb iphone app</b>.</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://thetoptrends.net/phpbb-iphone-app/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Iphone PHPBB optimize</title>
		<link>http://thetoptrends.net/iphone-phpbb-optimize/</link>
		<comments>http://thetoptrends.net/iphone-phpbb-optimize/#comments</comments>
		<pubDate>Fri, 09 Apr 2010 09:04:50 +0000</pubDate>
		<dc:creator>hitechist</dc:creator>
				<category><![CDATA[Php]]></category>

		<guid isPermaLink="false">http://thetoptrends.net/iphone-phpbb-optimize/</guid>
		<description><![CDATA[This article is about &#8220;Iphone PHPBB optimize&#8221;, you can find here a huge variety of articles about &#8220;Iphone PHPBB optimize&#8221;:
Web hosting affiliate programs belong to the most profitable online money making opportunities. There are thousands of hosting companies in the market and the competition becomes higher every day. With this competition comes one positive effect [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>This article is about &#8220;Iphone PHPBB optimize&#8221;, you can find here a huge variety of articles about &#8220;Iphone PHPBB optimize&#8221;:</p>
<p>Web hosting affiliate programs belong to the most profitable online money making opportunities. There are thousands of hosting companies in the market and the competition becomes higher every day. With this competition comes one positive effect &#8211; web hosting companies compete who will offer the best affiliate program. So why not to take advantage of the competition in this niche?</p>
<p>There are 3 basic ways how to earn money with web hosting affiliate programs:</p>
<p>1. Creating hosting directory<br />
<br />2. Web hosting reviews site<br />
<br />3. Running a hosting forum</p>
<p>1. Creating hosting directory:</p>
<p>Join all possible hosting affiliate programs and sign up for all major affiliate networks like Commission Junction, ClickBank, Share a sale etc. Fill in your web hosts directory with the affiliate offers and start to promote the hosting directory. On the top positions place affiliate links which belong to the web hosts paying recurring affiliate commission.</p>
<p>2. Web hosting reviews site</p>
<p>Join affiliate programs of the most popular web hosts and review all of them on your website. Optimize the website for some hosting related keywords and also for the phrases like &#8220;company name review&#8221;. Another way how to earn money with web hosts reviews is to buy a script which will allow your visitors submit their own reviews.</p>
<p>3. Running a hosting forum</p>
<p>Run a hosting forum and earn money from ads and paid promotional sticky threads. It is possible to download forum script like phpBB or SMF for free. These scripts are suitable for small and medium sized communities. When will your community grow you can consider buying professional forum script.</p>
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td valign="top">
<p>Continue reading this to build up passive income with web hosting and other best paying affiliate programs:<bR> <a target="_new" href="http://www.moneytoplist.com">Residual Income Affiliate Programs</a></p>
<p>Author makes good living with affiliate programs since 2002. The success came when he started to concentrate on residual income affiliate programs. He recommends to your attention list of the most profitable affiliate programs which can be found at <a target="_new" href="http://www.moneytoplist.com">http://www.MoneyTopList.com</a>.</p>
<p style="margin-bottom:1em;">Article Source:<br />
						<a href="?expert=Bedrich_Omacka"><br />
							http://EzineArticles.com/?expert=Bedrich_Omacka						</a>
					</p>
</td>
<td>
<div style="padding:5px; margin:0 0 0 10px;border:1px solid #fff;background-color:#fff;">
													<img height="90" width="90" src="http://ezinearticles.com/members/mem_pics/Bedrich-Omacka_24247.jpg" border="0" alt="Bedrich Omacka - EzineArticles Expert Author" title="Bedrich Omacka"></p>
</td>
</tr>
</table>
<p>	<!--UdmComment--><br />
	<!||How to Earn Money With Web Hosting Affiliate Programs</p>
<p><u>More info about Iphone PHPBB optimize:</u></p>
<p><a href=http://digi-corp.com/digicorp-iphone-application-development>Digicorp: iPhone Application Development</a></p>
<p>Digicorp is one of the foremost Indian Companies to apply its hands on Smart Phone Development such as iPhone, Android and Palm Pre.</p>
<p><a href=http://www.vecstechnosoft.com/>Home | PHP web Development | PHP mysql development | PHP &#8230;</a></p>
<p>PHP web development Company Expertise in PHP development,PHP developer, PHP mysql web development, web php development, custom PHP development, PHP website &#8230;</p>
<p><a href=http://www.top4download.com/free-phpbb/>phpbb Software &#8211; Free Download phpbb &#8211; Top 4 Download</a></p>
<p>phpbb Software &#8211; Free Download phpbb &#8211; Top 4 Download &#8211; Free Download Software &#8230; iPhone Chat Software by 123 Flash Chat can add a chat room to your website in minutes. &#8230;</p>
<p><a href=http://sidebars4420.allblogreport.com/2008/08/14/apple-iphone-why-the-hype/>apple <b>iphone</b> &#8211; why the hype</a></p>
<p>from our forum sub 2. modules mail <b>phpbb</b> index <b>optimize</b> mysql the thread cache index posting posting privacy policy posting index ?p=21. posting ?q=%255bcategorypathfirst 1080. jobsubmitopening join?replyform=1. default announce &#8230;</p>
<p><a href=http://www.linksofuklondon.com/?p=535>UGG Tall Boots Seo</a></p>
<p>Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 49455 bytes) in /home/yoursites/public_html /yoursites/wp-includes/blabala.php on line 118 author, Blog, coding, comment, CommentLuv, Comments, concept, dashboard, digg, Plugin, Posts, profile, Stats, tweets, Wordpress, <b>&#8230;</b></p>
<p><a href=http://www.toponereport.com/tag/paid-iphone-app/>Paid Iphone App | Top One Report</a></p>
<p>Your One-Stop Forum Solution: phpBB. no responses &#8211; Posted 03.30.10. continue. Technically &#8230; iphone app Resources revenue sales page videos shopping cart site optimization &#8230;</p>
<p><a href=http://andrebini.com/pjnwu/fix-iphone.html>Fix Iphone, Everytrail iphone, Facebook app iphone download &#8230;</a></p>
<p>Chrome should work hard really on the first optimisation for netbooks, if it &#8211; thier the initial target &#8230; by phpBB Â© 2001, 2005 phpBB Group. Our friends fix iphone/faac iphone &#8230;</p>
<p>This post was mainly about Iphone PHPBB optimize, you are welcomed to comment here about <b>Iphone PHPBB optimize</b>.</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://thetoptrends.net/iphone-phpbb-optimize/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Php date selection</title>
		<link>http://thetoptrends.net/php-date-selection/</link>
		<comments>http://thetoptrends.net/php-date-selection/#comments</comments>
		<pubDate>Thu, 01 Apr 2010 08:46:52 +0000</pubDate>
		<dc:creator>hitechist</dc:creator>
				<category><![CDATA[Php]]></category>

		<guid isPermaLink="false">http://thetoptrends.net/php-date-selection/</guid>
		<description><![CDATA[This article is about &#8220;Php date selection&#8221;, you can find here a huge variety of articles about &#8220;Php date selection&#8221;:
Today we are going to review the PHP-Nuke Content Management System (CMS). PHP-Nuke is best used for a community website, or a website focused on different information (including articles, guides, etc.) that users can interact with.
Simply [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>This article is about &#8220;Php date selection&#8221;, you can find here a huge variety of articles about &#8220;Php date selection&#8221;:</p>
<p>Today we are going to review the PHP-Nuke Content Management System (CMS). PHP-Nuke is best used for a community website, or a website focused on different information (including articles, guides, etc.) that users can interact with.</p>
<p>Simply put the main focus of PHP-Nuke is to manage your web site&#8217;s pages through the use of modules. There are many different modules available, and as PHP-Nuke is open source many people create thier own module and release them (there is also a new feature on the PHP Nuke Website, where users can sell custom modules).</p>
<p>In this article we will dive deep into PHP-Nuke and explore some of the various features available in this free Content Management System.</p>
<p>Before we continue on the requirements for setting up PHP Nuke should be stated. Firstly you will need some type of web server (Apache is recommended), along with some time of SQL database (MySQL is standard and best used with PHP Nuke), you will also need a PHP version of at least 4.</p>
<p>For this article we will assume you are using a shared hosting account with FTP enabled, although if you have an Apache server on your computer the same steps are used. Below is a summary of the installation instructions as stated on the PHP Nuke website, if you already have nuke installed you can skip this section.<br />
<blockquote>First of all you are going to need to download a version of PHP-Nuke, you can download the latest version on the official web site. Now if you are using a shared hosting account you will need to unzip the PHP-Nuke package, and upload via FTP to your server. You can put PHP Nuke inside your document root or create a directory such as &#8216;nuke&#8217; if you only wish to use PHP Nuke for a sub area of your web site.</p>
<p>If your server is on a UNIX of Linux platform (shared hosting most likely is, if unsure ask your host), you will need to edit the file permissions. I will not go into detail here but, files will be set to chmod &#8216;644&#8242; and directories will be set to &#8216;755&#8242;.</p>
<p>You will now need to create the appropriate database structure for PHP Nuke, the easiest way to do this that requires little MySQL knowledge is to use the PHP Nuke database creation package file, nukesql.php.</p>
<p>Now before we dive into working with your newly installed PHP Nuke site you just need to edit the config file. You will need to enter your MySQL database information, it should be easy to see where to enter the information via the comments in the file.</p>
<p>We now go to the Home page created by PHP Nuke, and there is a little message there with a link to create a superuser (an admin with all the admin powers, is referred to as a superadmin). After the user is created login to the admin page (yoursite.com/admin.php) using your newly created superadmin: god with the password &#8216;password&#8217; (you should change theses immediately, and remember to use a complicated alpha-numerical password).</p></blockquote>
<p>You now have a PHP Nuke website setup and ready with a superadmin account setup for you. You might now want to check out the following sections on the official PHP-Nuke website to get some basic concepts on your new content management system:<br />

<ul>
<li>The Add-Ons download section. Here you can browse the different categories for add-ons that may interest you.</li>
<li>The Themes download section. Choose a different theme to make you PHP Nuke website more attractive.</li>
<li>Questions. A selection of questions and answers relating to PHP-Nuke.</li>
</ul>
<p>PHP-Nuke comes built in with a statistics module, it shows some basic stats of your website such as the number of registered users or the the number of posts made. But also shows a breakdown of what operating system and internet browser you visitors have used.</p>
<p>Probably the module you are likely to use first, is the pre-installed News module. Using this you can add news items under different categories and this news is sorted on the front page of your website by date. There is also a great archiving feature which allows for easy indexing by search engines and users. You can see an example of the news module on the front page of your PHP-Nuke installation, the news items are edited via the admin page. Users are also able to submit news which is moderated by admins and decided upon whether it will be added to the website.</p>
<p>Built into PHP Nuke is also a surveys module. Using the admin control panel you can create new polls which can be answered by visitors to your website. When a new survey is created the previous survey is then sent to an archive where the results (in graph form) are browsable.</p>
<p>The different modules are usually positioned on the left and right side of the page, and the order along with which modules are active is set using the admin panel on the modules page.</p>
<p>Finally is our review on the PHP-Nuke content management system. For an overall look we would rate PHP Nuke 6/10, it is coded well and looks professional but the entire them is missing the whole Web 2.0 look. For features and modules we give a rating of 7/10 as there are many different features and add-ons available to make the site perform specific activities. For an overall review of PHP Nuke we give a rating of 5/10 as you have to create special skins (themes) for PHP-Nuke and it is hard to incorporate it into an existing web site.</p>
<p>If you are interested in learning more on PHP-Nuke along with documentation and how-tos then please feel free to visit the official PHP-Nuke web site.</p>
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td valign="top">
<p>This article was written by <a target="_new" href="http://ryanbailey.co.nz">Ryan Bailey</a>, an experienced <a target="_new" href="http://ryanbailey.co.nz">Web Developer</a>.</p>
<p style="margin-bottom:1em;">Article Source:<br />
						<a href="?expert=Ryan_Bailey"><br />
							http://EzineArticles.com/?expert=Ryan_Bailey						</a>
					</p>
</td>
<td>
<div style="padding:5px; margin:0 0 0 10px;border:1px solid #fff;background-color:#fff;">
</td>
</tr>
</table>
<p>	<!--UdmComment--><br />
	<!||CMS Review - PHP Nuke</p>
<p><u>More info about Php date selection:</u></p>
<p><a href=http://wiki.phpontrax.com/Date_select>Date select &#8211; PHP on Trax</a></p>
<p>Date select. From PHP on Trax. Jump to: navigation, search. date_select &#8230; Discarding the month select will also automatically discard the day select. &#8230;</p>
<p><a href=http://positionabsolute.net/blog/2008/01/google-calendar-date-range-selection.php>Google Calendar Date Range Selection : A Google Gadget to &#8230;</a></p>
<p>Home &gt; blog &gt; 2008 &gt; 01 &gt; google-calendar-date-range-selection.php &#8230; Select a date range from the calendars above by clicking on a start and end date. Add to your iGoogle &#8230;</p>
<p><a href=http://cool-php-tutorials.blogspot.com/2010/02/easy-php-date-picker.html>PHP Tutorials: Easy <b>PHP Date Picker</b></a></p>
<p>Easy <b>PHP Date Picker</b>. There are many fancy javascript calendars for selecting dates &#8211; for example the one that comes as a jQuery plugin is really cool. There are however some disadvantages to using such calendars: &#8230;</p>
<p><a href=http://www.w3schools.com/PHP/php_date.asp>PHP Date() Function</a></p>
<p>Free HTML XHTML CSS JavaScript DHTML XML DOM XSL XSLT RSS AJAX ASP ADO PHP SQL tutorials, references, examples for web building.</p>
<p><a href=http://www.businesshat.com/established-website/buy-bodybuilding-website-business-domain-name-for-sale-for-sale-20-50>Buy â??bodybuildingâ?? Website Business &#038; Domain Name For Sale For Sale :: $20.50</a></p>
<p>&#8216;bodybuilding&#8217; Website Business &#038; Domain Name For Sale All SITEGAP Websites Inc. Great Income Streams &#038; Bonus Current Price: $20.50 Location Kent More Details on this Established Website! Established  Bodybuilding   Turnkey Website For Sale Your Very Own Fully Automated Website Business Which Will W <b>&#8230;</b></p>
<p><a href=http://www.brainbell.com/tutorials/php/TOC_Date_And_Time.html>Php &#8211; TOC Date And Time Tutorials</a></p>
<p>Php TOC Date And Time Tutorials &#8230; into a Date Determining Sunrise and Sunset Using Date and Time for Benchmarks Using Form Fields for Date Selection Create Self &#8230;</p>
<p><a href=http://www.discoverfoothills.com/index.php?option=com_content&#038;task=view&#038;id=8083&#038;Itemid=197>SCROLL DOWN TO VIEW AND ENTER EACH FOOTHILLS COMMUNITY &#8211; Discover Foothills</a></p>
<p>When artists, artisans, and musicians flocked to this stress-free oasis, they created a spectacular selection of gift galleries, craft shops &#8230; com Event Calendar frequently to find up-to-date details on events. You&#8217;re always welcome to live and &#8230;</p>
<p><a href=http://forums.ilounge.com/showthread.php?t=257323><b>Date</b> Added Sorting issues &#8211; iLounge Forums</a></p>
<p><b>Select</b> the option to Browse to where the file is located, but <b>select</b> the 160kbps native file. 5- iTunes will then begin playing the 160kbps version, and it should retain the original <b>Date</b> Added (as well as rating, playcount, etc.) &#8230;</p>
<p>This post was mainly about Php date selection, you are welcomed to comment here about <b>Php date selection</b>.</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://thetoptrends.net/php-date-selection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Php easy getdate</title>
		<link>http://thetoptrends.net/php-easy-getdate-2/</link>
		<comments>http://thetoptrends.net/php-easy-getdate-2/#comments</comments>
		<pubDate>Tue, 23 Mar 2010 07:41:50 +0000</pubDate>
		<dc:creator>hitechist</dc:creator>
				<category><![CDATA[Php]]></category>

		<guid isPermaLink="false">http://thetoptrends.net/php-easy-getdate-2/</guid>
		<description><![CDATA[This article is about &#8220;Php easy getdate&#8221;, you can find here a huge variety of articles about &#8220;Php easy getdate&#8221;:
SQL is short for Structured Query Language, which is broadly used in a database system for data programming, such as structure designing and data manipulation. While it may seem easy at first glance, it takes time [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>This article is about &#8220;Php easy getdate&#8221;, you can find here a huge variety of articles about &#8220;Php easy getdate&#8221;:</p>
<p>SQL is short for Structured Query Language, which is broadly used in a database system for data programming, such as structure designing and data manipulation. While it may seem easy at first glance, it takes time and practice to be perfect at this data language. Queries can be as simple as a single keyword or as sophisticated as a sentence with 20 keywords or even a whole structured routine.</p>
<p>MySQL is the most popular relational database system in the world, as the name suggests, it&#8217;s SQL compatible. It will be our subject in this series of articles in teaching you how to use the basic SQL commands to operate on databases and data tables.</p>
<p><strong>How to display data from MySQL database?</strong></p>
<p>The simplest SQL query to display data from a MySQL table should be:</p>
<p><em>SELECT * FROM table1;</em></p>
<p>Which selects all records by fields * from table table1. SELECT is the SQL command to display data or output something. The asterisk simply means all fields. There can be a conditional clause that indicates the conditions that must be met to display the data:</p>
<p><em>SELECT * FROM table1 WHERE id</p>
<p>Which selects and outputs all fields of all records from table1 that has an id field with value smaller than 100. You can spice things up by:</p>
<p><em>SELECT field1, field2, FROM table1 WHERE id = 50;</em></p>
<p>Which selects field1 and field2 only of all the records in table1 that has an id smaller than 100 AND larger than or equals to 50.</p>
<p>Therefore, AND means both conditions should be met to have a positive return. Other than AND, you have other logic operators such as OR and XOR. By OR you mean either this or that would do. By XOR, however, it means only one of them should be true and no more.</p>
<p>You can also have multiply stacked SELECT queries such as:</p>
<p><em>SELECT * FROM (SELECT * FROM table1);</em></p>
<p>Which is essentially the same with just the clause. This is useful when you need to combine or filter the selected results on multiple steps from more than one tables.</p>
<p>SELECT has a lot more uses, it can be used for numeric calculations:</p>
<p><em>SELECT 123 + 567;</em></p>
<p>Or date:</p>
<p><em>SELECT GETDATE();</em></p>
<p>Or count the total number of records in a table:</p>
<p><em>SELECT COUNT(*) FROM table1;</em></p>
<p>Otherwise, you may want to order the results by a specific field:</p>
<p><em>SELECT * FROM table1 ORDER BY id;</em></p>
<p>Which would output the results ordered by the id field in ascendant order. To order the results in descendant order:</p>
<p><em>SELECT * FROM table1 ORDER BY id DESC;</em></em></p>
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td valign="top">
<p>For rock solid MySQL hosting of databases, <a target="_new" href="http://www.rackspacecloudpromocode.com/">Rackspace Cloud</a> is currently giving a discount of Cloud Sites by a <a target="_new" href="http://www.kavoir.com/2009/01/web-hosting-mosso-discount-coupon-code-control-panel-demo-email-demo.html">Rackspace Cloud promotion</a> code. Don&#8217;t panic, there is a money back guarantee of 30 days.</p>
<p style="margin-bottom:1em;">Article Source:<br />
						<a href="?expert=Yang_Yang"><br />
							http://EzineArticles.com/?expert=Yang_Yang						</a>
					</p>
</td>
<td>
<div style="padding:5px; margin:0 0 0 10px;border:1px solid #fff;background-color:#fff;">
													<img height="90" width="67" src="http://ezinearticles.com/members/mem_pics/Yang-Yang_181580.jpg" border="0" alt="Yang Yang - EzineArticles Expert Author" title="Yang Yang"></p>
</td>
</tr>
</table>
<p>	<!--UdmComment--><br />
	<!||How to Write SQL to Display Data From MySQL Databases</p>
<p><u>More info about Php easy getdate:</u></p>
<p><a href=http://php.net/manual/en/function.date-default-timezone-set.php>PHP: date_default_timezone_set &#8211; Manual</a></p>
<p>Note: Since PHP 5.1.0 (when the date/time functions were rewritten), every call to a date &#8230; of functions like getdate() or date() using PHP 5.2.6 on Windows. &#8230;</p>
<p><a href=http://pear.php.net/manual/zh/package.datetime.date.examples.php>Manual :: Learning by doing</a></p>
<p>This can be done in different ways, for example by using getTime or getDate. &#8230; Now that we know how to create a Date instance, we&#8217;ll do some easy tasks. &#8230;</p>
<p><a href=http://coding.derkeiler.com/Archive/PHP/alt.php/2004-05/0727.html>alt.php: Re: get date of the first and end weekday</a></p>
<p>how to get date of the first weekday and also the end weekday [...] Make it easy as 3 &#8230; Next in thread: Martin Geisler:  Re: get date of the first and end weekday  &#8230;</p>
<p><a href=http://php.net/manual/en/function.date.php>PHP: date &#8211; Manual</a></p>
<p>getdate date_timezone_set. Last updated: Fri, 12 Mar 2010. view this page in. date (PHP 4, &#8230; easy-to-find equivalent for W3C Datetime or date( c ) in a previous version of php, &#8230;</p>
<p>This post was mainly about Php easy getdate, you are welcomed to comment here about <b>Php easy getdate</b>.</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://thetoptrends.net/php-easy-getdate-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Php easy getdate</title>
		<link>http://thetoptrends.net/php-easy-getdate/</link>
		<comments>http://thetoptrends.net/php-easy-getdate/#comments</comments>
		<pubDate>Tue, 23 Mar 2010 07:40:12 +0000</pubDate>
		<dc:creator>hitechist</dc:creator>
				<category><![CDATA[Php]]></category>
		<category><![CDATA[basic sql commands]]></category>
		<category><![CDATA[DOM XSL]]></category>
		<category><![CDATA[Don]]></category>
		<category><![CDATA[getdate sql]]></category>
		<category><![CDATA[Recovery Road]]></category>
		<category><![CDATA[relational database system]]></category>
		<category><![CDATA[SELECT]]></category>
		<category><![CDATA[table]]></category>
		<category><![CDATA[US]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[This article is about &#8220;Php easy getdate&#8221;, you can find here a huge variety of articles about &#8220;Php easy getdate&#8221;:
SQL is short for Structured Query Language, which is broadly used in a database system for data programming, such as structure designing and data manipulation. While it may seem easy at first glance, it takes time [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>This article is about &#8220;Php easy getdate&#8221;, you can find here a huge variety of articles about &#8220;Php easy getdate&#8221;:</p>
<p>SQL is short for Structured Query Language, which is broadly used in a database system for data programming, such as structure designing and data manipulation. While it may seem easy at first glance, it takes time and practice to be perfect at this data language. Queries can be as simple as a single keyword or as sophisticated as a sentence with 20 keywords or even a whole structured routine.</p>
<p>MySQL is the most popular relational database system in the world, as the name suggests, it&#8217;s SQL compatible. It will be our subject in this series of articles in teaching you how to use the basic SQL commands to operate on databases and data tables.</p>
<p><strong>How to display data from MySQL database?</strong></p>
<p>The simplest SQL query to display data from a MySQL table should be:</p>
<p><em>SELECT * FROM table1;</em></p>
<p>Which selects all records by fields * from table table1. SELECT is the SQL command to display data or output something. The asterisk simply means all fields. There can be a conditional clause that indicates the conditions that must be met to display the data:</p>
<p><em>SELECT * FROM table1 WHERE id</p>
<p>Which selects and outputs all fields of all records from table1 that has an id field with value smaller than 100. You can spice things up by:</p>
<p><em>SELECT field1, field2, FROM table1 WHERE id = 50;</em></p>
<p>Which selects field1 and field2 only of all the records in table1 that has an id smaller than 100 AND larger than or equals to 50.</p>
<p>Therefore, AND means both conditions should be met to have a positive return. Other than AND, you have other logic operators such as OR and XOR. By OR you mean either this or that would do. By XOR, however, it means only one of them should be true and no more.</p>
<p>You can also have multiply stacked SELECT queries such as:</p>
<p><em>SELECT * FROM (SELECT * FROM table1);</em></p>
<p>Which is essentially the same with just the clause. This is useful when you need to combine or filter the selected results on multiple steps from more than one tables.</p>
<p>SELECT has a lot more uses, it can be used for numeric calculations:</p>
<p><em>SELECT 123 + 567;</em></p>
<p>Or date:</p>
<p><em>SELECT GETDATE();</em></p>
<p>Or count the total number of records in a table:</p>
<p><em>SELECT COUNT(*) FROM table1;</em></p>
<p>Otherwise, you may want to order the results by a specific field:</p>
<p><em>SELECT * FROM table1 ORDER BY id;</em></p>
<p>Which would output the results ordered by the id field in ascendant order. To order the results in descendant order:</p>
<p><em>SELECT * FROM table1 ORDER BY id DESC;</em></em></p>
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td valign="top">
<p>For rock solid MySQL hosting of databases, <a target="_new" href="http://www.rackspacecloudpromocode.com/">Rackspace Cloud</a> is currently giving a discount of Cloud Sites by a <a target="_new" href="http://www.kavoir.com/2009/01/web-hosting-mosso-discount-coupon-code-control-panel-demo-email-demo.html">Rackspace Cloud promotion</a> code. Don&#8217;t panic, there is a money back guarantee of 30 days.</p>
<p style="margin-bottom:1em;">Article Source:<br />
						<a href="?expert=Yang_Yang"><br />
							http://EzineArticles.com/?expert=Yang_Yang						</a>
					</p>
</td>
<td>
<div style="padding:5px; margin:0 0 0 10px;border:1px solid #fff;background-color:#fff;">
													<img height="90" width="67" src="http://ezinearticles.com/members/mem_pics/Yang-Yang_181580.jpg" border="0" alt="Yang Yang - EzineArticles Expert Author" title="Yang Yang"></p>
</td>
</tr>
</table>
<p>	<!--UdmComment--><br />
	<!||How to Write SQL to Display Data From MySQL Databases</p>
<p><u>More info about Php easy getdate:</u></p>
<p><a href=http://php.net/manual/en/function.date-default-timezone-set.php>PHP: date_default_timezone_set &#8211; Manual</a></p>
<p>Note: Since PHP 5.1.0 (when the date/time functions were rewritten), every call to a date &#8230; of functions like getdate() or date() using PHP 5.2.6 on Windows. &#8230;</p>
<p><a href=http://www.msstate.edu/org/cycling/calendar/print.php?cal=Cycling,US+Holidays&#038;getdate=20060501&#038;printview=day>Cycling,US+Holidays &#8211; Monday, May 1</a></p>
<p>Summary: Recovery Road Ride. Description: Easy, easy, easy&#8230;you can even survive without a road bike. Powered by PHP iCalendar 2.21. This site is RSS-Enabled &#8230;</p>
<p><a href=http://php.pastebin.com/m1421fdd8>PHP | &lt;?php // GET DATE $path &#8211; Anonymous &#8211; m1421fdd8 &#8230;</a></p>
<p>Pastebin is a website that hosts all your text &amp; code on dedicated servers for easy sharing. learn more&#8230; php // GET DATE $path =  C:&#92;&#92;musik&#92;&#92; ; if ($handle = opendir($path) &#8230;</p>
<p><a href=http://www.w3schools.com/php/func_date_getdate.asp>PHP getdate() function</a></p>
<p>Free HTML XHTML CSS JavaScript DHTML XML DOM XSL XSLT RSS AJAX ASP ADO PHP SQL tutorials, references, examples for web building.</p>
<p>This post was mainly about Php easy getdate, you are welcomed to comment here about <b>Php easy getdate</b>.<br />
<h4>Related Blogs</h4>
<ul class="pc_pingback">
<li class="hdl" style="list-style: none">Related Blogs on <b>Php easy getdate</b></li>
<li><a href="http://saffrongeek.wordpress.com/2009/09/04/php-pre-1970-dates-functions-explored-for-a-task/"><b>PHP</b>:: Pre-1970 Dates :: Functions Explored for a task <b>&#8230;</b></a></li>
<li><a href="http://www.withfish.cn/?p=56"><b>php getdate</b>() ??– ????</a></li>
</ul>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://thetoptrends.net/php-easy-getdate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Php tutorial youtube</title>
		<link>http://thetoptrends.net/php-tutorial-youtube/</link>
		<comments>http://thetoptrends.net/php-tutorial-youtube/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 10:33:14 +0000</pubDate>
		<dc:creator>hitechist</dc:creator>
				<category><![CDATA[Php]]></category>

		<guid isPermaLink="false">http://thetoptrends.net/php-tutorial-youtube/</guid>
		<description><![CDATA[This article is about &#8220;Php tutorial youtube&#8221;, you can find here a huge variety of articles about &#8220;Php tutorial youtube&#8221;:
I&#8217;ve written this tutorial for anyone who uses adobe premiere pro and wants to find out the best way to compress a video using &#8220;Windows Media Video&#8221;.
I cover things like what bitrate to use with what [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>This article is about &#8220;Php tutorial youtube&#8221;, you can find here a huge variety of articles about &#8220;Php tutorial youtube&#8221;:</p>
<p>I&#8217;ve written this tutorial for anyone who uses adobe premiere pro and wants to find out the best way to compress a video using &#8220;Windows Media Video&#8221;.</p>
<p>I cover things like what bitrate to use with what resolution and frame rate aswell as what a few of the different settings do and mean. Find out for yourself and take a read&#8230;</p>
<p>(not you will need to copy and paste image url&#8217;s in to your browser)</p>
<p><b>Getting to Adobe Media Encoder</b></p>
<p><b>1. </b>Render all unrendered footage if you haven&#8217;t done so already in premiere pro</p>
<p><b>2. </b>Now go, File &gt;&gt; Export &gt;&gt; Adobe Media Encoder</p>
<p><b>3. </b>Select &#8220;Windows Media&#8221; from the format drop down list</p>
<p><b>4. </b>Then, from the preset drop down list, select something like &#8220;WMV9 720 25p&#8221; (doesn&#8217;t really matter what you choose)</p>
<p><b>Video Settings</b></p>
<p><b>1. </b>Select &#8220;Video&#8221; on the left hand side of the Adobe Media Encoder</p>
<p><b>2. </b>Under Video, make sure&#8230;<br />

<ul>
<li>Select &#8220;Windows Media Video 9&#8221; as the codec</li>
<li>Leave &#8220;Allow Interlaced Processing&#8221; Unticked</li>
<li>Under Bitrate Settings, Select &#8220;Two&#8221; encoding passes and make sure the mode is &#8220;Variable Constrained&#8221;. This offers way better results compared to a single encoding pass</li>
</ul>
<p><b>Image:</b> fullvoltage.com.au/index.php?action=dlattach;topic=333.0;id=29;image</p>
<p><b>Audio Settings</b></p>
<p><b>1. </b>Select &#8220;Audio&#8221; on the left hand side of the Adobe Media Encoder</p>
<p><b>2. </b>Under Audio, make sure&#8230;<br />

<ul>
<li>Select &#8220;Windows Media Audio 9.1&#8221; as the audio codec</li>
<li>Under Bitrate Settings, Select &#8220;Two&#8221; encoding passes and make sure the mode is &#8220;Constant&#8221;. This will make sure the audio quality stays the same the whole way through the video</li>
</ul>
<p><b>Image:</b> fullvoltage.com.au/index.php?action=dlattach;topic=333.0;id=30;image</p>
<p><b>Audience Settings</b></p>
<p><b>1. </b>Select &#8220;Audiences&#8221; on the left hand side of the Adobe Media Encoder</p>
<p><b>2. </b>Audiences is the most important part as this is where you actually set the quality and the file size</p>
<p><b>3. </b>Now, select your desired frame rate, it&#8217;s usually best to keep it at its original level. But, say you&#8217;re original level is 50 frames a second, reduce it to 25. If you&#8217;re going for a really small file, then you&#8217;d want to bring your fps down to 20 or 15, but 25 will always enhance the footage as it will appear a lot smoother.</p>
<p><b>4. </b>For Pixel Aspect Ratio, set it to however you&#8217;re original footage is set. If you&#8217;re editing footage shot on the computer, then square pixels will give you the best results.</p>
<p><b>5. </b>Frame Width and Frame Height is a big factor for when considering image quality with file size. You kind of need to match them both up. In theory, for simple scenes like a close up of a human face &#8220;1 bit&#8221; per 200 pixels will offer good results,you may even want to try 250 pixels per bit. But with a more complex scene which includes maybe scenery and shrubs or a fast action video.etc, you&#8217;d want to aim around &#8220;1 bit&#8221; per 100 pixels (no where over 140 pixels per bit). To work this out, simply look at all the scenes in your video. If your scenes vary a lot in terms of colour and complexity, then you want lesser pixels per bit, this will increase file size (or reduce image size) but will offer way better results otherwise. On the other hand, if you&#8217;re video contains long interviews with a still background. Then the compressor will be able to produce good results with a high pixel per bit rate.</p>
<p><b>6. </b>Now, moving down to the basic audio settings, if you&#8217;re video contains a lot of sound and the sound is really important in the video. Then you wont want to go under 96kb/s, but I usually prefer to use 160kb/s or 128kb/s as if you compare the 160kb/s bitrate of the audio to the say 5000 bitrate of the video, you can see that the audio isn&#8217;t going to effect file size much in this case. The higher your video bitrate, the lesser the impact the audio will have on the filesize. Use CBR audio, not (A/V) CBR audio. Use stereo if your sound differs from channel to channel (most music does).</p>
<p><b>7. </b>Back to the Video now, Set Decoder Complexity to Auto</p>
<p><b>8. </b>For key frame interval, if you have a high action video with complex scenes, set this to about 1 or 2. On the other hand, if you have not so complex scenes like an interview with a still background, then you can raise this up to about 10.</p>
<p><b>9. </b>Leave buffer size as default</p>
<p><b>10. </b>Now, here is the good bit. Because earlier on, we set a Video Encoding mode to a Two pass encode with a variable but constrained bitrate. This means we can now give a maximum and average bitrate. It will use the maximum bitrate in the more complex scenes and will use the average bitrate for normal scenes. Now, setting your bitrate is important. This is basically, where we shove all our resolution and other data, in to a tightly packaged file. If you package your file to tight, bits of data start oozing out the corners which is why it&#8217;s important to package your video tight, but not too tight. Let&#8217;s say we have a rather complex video which is fairly fast paced with lots of different colours and scenes. We set our resolution to 1024&#215;768 with a frame rate of 25 and we want excellent quality, but a small file size.</p>
<p>Ok, let&#8217;s put what we learnt in to play. Ok, 1024 multiplied by 768 gives us 786000 pixels. That means that every single frame will contain 786000 pixels. If our video is running at 25fps, that&#8217;s 19.2 million pixels a second. The way compressors work, is they look for similarities across multiple frames and they try and share the data. Sometimes, when you set the bitrate too low, it just can&#8217;t deal with that data so it needs to throw away some pixels. The lower the bitrate, the more pixels get thrown around or ripped up.</p>
<p><b>11. </b>Now, we need to set the bitrate. So, seeing our scene is fairly complex, and we want good quality, I think 130 pixels per bit will be fine. So, lets divide 786000 by 130. This gives us 6040 bits. So, 6000 bits a second is what we need. We&#8217;ll set 6000 as the peak and 5000 as the average. Now, 5000 bits a second will produce a fairly large file in terms of the internet, but remember, we are using a resolution of 1024&#215;768 which is very big in terms of the net, but we want viewers to see &#8220;all&#8221; the work we have put in to it.</p>
<p><b>12. </b>Now, once the bitrate is set, we have our buffer size, the larger your bit rate, the larger you want your buffer size. In this case, a buffer of 20/25 will be fine (buffer usually doesn&#8217;t effect anything).</p>
<p><b>Image:</b> fullvoltage.com.au/index.php?action=dlattach;topic=333.0;id=31;image</p>
<p><b>Saving</b></p>
<p><b>1. </b>Now, save the preset buy hitting the floppy disk icon up the top of the Adobe Encoder Window. But, before you do that, place a comment for the preset if you want.</p>
<p><b>2. </b>Now, hit ok at the bottom of the window which will then prompt you for a location to save it. It will also give an estimated file size based on your video length and you&#8217;re peak data rate (for both the video and audio). But seeing we are using a variable bit rate, this estimate is usually higher than the end result.</p>
<p><b>3. </b>Let it render out, then enjoy.</p>
<p><b>Tips</b></p>
<ul>
<li>It&#8217;s usually good to set your work area to a length of 5 seconds over a complex part of your video, that way, you can do test renders to find the best bit rate</li>
<li>If you get errors while exporting and you use a hyperthreading processor or a dual core processor, visit this site to fix the problem. If you don&#8217;t get this problem, it may still be a good idea to visit the site and get the new adobe media encoder.
<p>[http://www.adobe.com/support/techdocs/330380.html]
</li>
</ul>
<p>I hope you learnt something from this tutorial Smiley</p>
<p>Cheers!</p>
<p>[http://www.fullvoltage.com.au]</p>
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td valign="top">
<p style="margin-bottom:1em;">Article Source:<br />
						<a href="?expert=Tom_Wardrop"><br />
							http://EzineArticles.com/?expert=Tom_Wardrop						</a>
					</p>
</td>
<td>
<div style="padding:5px; margin:0 0 0 10px;border:1px solid #fff;background-color:#fff;">
</td>
</tr>
</table>
<p>	<!--UdmComment--><br />
	<!||Windows Media Video Compression Using Adobe Premiere Pro</p>
<p><u>More info about Php tutorial youtube:</u></p>
<p><a href=http://www.tutorialmelayu.com/tag/youtube>Youtube | Tutorial Melayu</a></p>
<p>Jika anda mahu memuat turun video dari youtube, metacafe, daily motion, veoh, google video dan lain-lain, &#8230; editor tutorial melayu tutorial melayu php tutorial php mudah video &#8230;</p>
<p><a href=http://www.tutorial-lab.com/tutoriales-php/id244-formulario-de-login-en-php.aspx>Formulario de login en php Tutorial</a></p>
<p>Tutorial en ingles. Explica como crear un formulario en html y como recoger los valores introducidos por un usuario usando php, y valorando los datos introducidos por este&#8230;</p>
<p><a href=http://www.timesnews.net/article.php?id=9021463>Kingsport girls&#8217; Internet experience more than fashion &#8230; &#8211; Kingsport Times-News</a></p>
<p>Have you watched her tutorial videos? She doesnt really do any so im kinda stumped as to why everyone on youtube is nutso for them? Her beatuy routine for applying makeup is no different in how i apply my makeup. The only difference is she spends 60 &#8230;</p>
<p><a href=http://www.tutorialsphere.com/report/6276/uploading-youtube-videos-with-the-php-client-library>PHP Frameworks Tutorial : Uploading YouTube Videos with the &#8230;</a></p>
<p>Jochen Hartmann YouTube API and Tools Team demonstrates the basics of how to use the PHP Client Library and YouTube Data API to upload videos.</p>
<p><a href=http://tutleaf.com/>Free Tutorials on Html, Css, Php, Msql and Javascript &#8230;</a></p>
<p>Tutleaf.com is a great ressource for learning HTML, CSS, PHP &amp;MSQL and even more. &#8230; This is a tutorial from 123contactForm on Youtube, he will be showing us how to create &#8230;</p>
<p><a href=http://youtube.jimmyr.com/tutorials/KWRB-maTVyM.php>XAMPP &#8211; Make your Computer a Webserver: Apache, PHP, MySQL</a></p>
<p>XAMPP &#8211; Make your Computer a Webserver: Apache, PHP, MySQL &#8230; YouTube &#8211; PHP Tutorial: Installation and The Basics. Free Webhosts. List of Webhosting Companies. Update &#8230;</p>
<p>This post was mainly about Php tutorial youtube, you are welcomed to comment here about <b>Php tutorial youtube</b>.</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://thetoptrends.net/php-tutorial-youtube/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Joomla content timestamp</title>
		<link>http://thetoptrends.net/joomla-content-timestamp/</link>
		<comments>http://thetoptrends.net/joomla-content-timestamp/#comments</comments>
		<pubDate>Sun, 14 Mar 2010 09:08:10 +0000</pubDate>
		<dc:creator>hitechist</dc:creator>
				<category><![CDATA[Php]]></category>

		<guid isPermaLink="false">http://thetoptrends.net/joomla-content-timestamp/</guid>
		<description><![CDATA[This article is about &#8220;Joomla content timestamp&#8221;, we hope to bring more articles about &#8220;Joomla content timestamp&#8221; in the near future:
Three Ways To Index Your Site With Google Sitemaps
[Difficult, Hard, And Easy]
Google has recently implemented a program where any webmaster
can create a Sitemap of their Site and submit it for indexing
by Google. It is a [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>This article is about &#8220;Joomla content timestamp&#8221;, we hope to bring more articles about &#8220;Joomla content timestamp&#8221; in the near future:</p>
<p><b>Three Ways To Index Your Site With Google Sitemaps<br />
<br />[Difficult, Hard, And Easy]</b></p>
<p>Google has recently implemented a program where any webmaster<br />
<br />can create a Sitemap of their Site and submit it for indexing<br />
<br />by Google. It is a quick and easy way for you to keep your<br />
<br />site constantly indexed and updated in Google.</p>
<p>The program is appropriately called <b>Google Sitemaps</b>.</p>
<p>In order for you to best use Sitemaps, you must have an XML generated<br />
<br />file on your site that will transmit or send any updates, changes, and<br />
<br />data to Google. XML (Extensible Markup Language)is everywhere these days,<br />
<br />you have probably seen the orange XML logo on many web sites  and its<br />
<br />often associated with Blogging because Blogs use XML/RSS feeds to<br />
<br />syndicate their content.</p>
<p>Today RSS is known mostly as &#8216;Really Simple Syndication&#8217; but its original<br />
<br />acronym  stood for &#8216;Rich Site Summary&#8217;. XML is only simple code like HTML<br />
<br />and it is used to <b>syndicate</b> your content to all interested parties.</p>
<p>And the interested party in this case is Google. By creating<br />
<br />Sitemaps Google is really asking webmasters to take charge of<br />
<br />the indexing and updating of their sites. Basically, doing<br />
<br />the Googlebot&#8217;s job!</p>
<p>This is a &#8216;Good&#8217; thing! With the steady influx of new web sites<br />
<br />growing rapidly, indexing all this material will become a challenge,<br />
<br />even with the resources of Google. With Sitemaps, websmasters can<br />
<br />now take charge and make sure their site is crawled and indexed.</p>
<p>Please note, indexing your site with Sitemaps <b>WON&#8217;T</b> improve<br />
<br />your rankings in Google. You will still be competing with the other<br />
<br />sites in Google for top positions. But with Sitemaps you can make<br />
<br />sure all your pages are crawled and indexed quickly by Google.</p>
<p>There are some other big advantages of using Google&#8217;s Sitemaps<br />
<br />&#8211; mainly you have control over a few key variables, attributes or tags.<br />
<br />To explain this as simply as possible, your XML powered sitemap<br />
<br />file will have this simple code for each page of your site:</p>
<p><a target="_new" rel="nofollow" href="http://www.yoursite.com/">http://www.yoursite.com/</a></p>
<p>1.0</p>
<p>2005-07-03T16:18:09+00:00</p>
<p>daily</p>
<p>Along with &#8216;urlset&#8217; tags at the beginning and end of your code,<br />
<br />and an XML version indication &#8211; that&#8217;s basically your XML file!<br />
<br />File size will depend on the number of webpages you have.</p>
<p>Taking a closer look at this XML file:</p>
<p><b>location</b>  <a target="_new" rel="nofollow" href="http://www.yoursite.com">http://www.yoursite.com</a> &#8212; name of your webpage</p>
<p><b>priority</b>  you set the priority you want Google to place on that page<br />
<br />in your site. You can prioritize your pages: 0.0 being the least,<br />
<br />1.0 being the highest, 0.5 is in the middle. This is <b>ONLY</b> relative to<br />
<br />your site. It will not affect your rankings. Why is this important?<br />
<br />You have certain pages on your site that are more important than<br />
<br />others, (home page, high profit page, opt-in page, etc.) by placing high<br />
<br />priority on these pages, you will increase their importance in Google.</p>
<p><b>last modified</b>   when you last modified that page, this timestamp allows<br />
<br />crawlers to avoid recrawling pages that haven&#8217;t changed.</p>
<p><b>change frequency</b>   you can tell Google how often you change that<br />
<br />particular page. Never, weekly, daily, hourly, and so on &#8212; if you<br />
<br />frequently update your page this could be extremely important.</p>
<p><b>Why do I need a XML Generator?</b></p>
<p>In order for this XML sitemap file on your site to be constantly<br />
<br />updated, you need a Generator that will spider your site, list<br />
<br />all the urls and automatically feed them to Google. Thus constantly<br />
<br />updating your site in Google&#8217;s massive index or database.<br />
<br />Keep in mind, Google also gives you the option of submitting<br />
<br />a <b>simple text file</b> with all your URLs.</p>
<p>Now there is already a flood of these generators popping up! Different<br />
<br />ways of generating your XML powered sitemap file. More are probably appearing<br />
<br />as you read this. But lets look at Three ways to generate your XML file.</p>
<p><b>Difficult</b>  Google&#8217;s Python Generator</p>
<p>That&#8217;s a relative term, if you know your server like the back of your<br />
<br />hand and installing scripts doesn&#8217;t scare the bejesus out of you,<br />
<br />you&#8217;re probably smiling at the word difficult. Google supplies a link to a<br />
<br />generator which you can download and set up on your server. It will cough<br />
<br />up your sitemap XML file and automatically feed it to Google.<br />
<br />Google XML Generator [https://www.google.com/webmasters/sitemaps/docs/en/sitemap-generator.html]</p>
<p>In order for this Generator to work, Python version 2.2 must be installed<br />
<br />on your web server, many servers don&#8217;t have this. If you know what you&#8217;re<br />
<br />doing, this will probably be a good choice.</p>
<p>You don&#8217;t need a Google Account to use Sitemaps but it&#8217;s encouraged<br />
<br />because you can track your sitemap&#8217;s progress and view diagnostic<br />
<br />information. If you already have another Google Account gmail,<br />
<br />Google Alerts, etc. just use that one to sign in and follow directions<br />
<br />from there.</p>
<p>To submit your Sitemap using an HTTP request, issue your request<br />
<br />to the following URL:</p>
<p>[http://www.google.com/webmasters/sitemaps/ping?sitemap=sitemap_url]</p>
<p><b>Hard</b>  A PHP Code Generator</p>
<p>This is a php generator that you can place on your server. This<br />
<br />generator will spider your site, and produce your XML sitemap file. Download<br />
<br />the phpSitemapNG and upload it your server. Run the generator to get<br />
<br />your XML sitemap file and send it to Google.<br />
<br /><a target="_new" rel="nofollow" href="http://enarion.net/google/">PHP Generator</a></p>
<p>Again, this is only hard to do if you don&#8217;t know your way around PHP<br />
<br />files or scripts.</p>
<p><b>Easy</b>  Free Online Generator</p>
<p>These Generators are popping up everywhere, and Google now keeps a list of<br />
<br />these &#8216;third party suppliers&#8217; of generators on their site. Find them here:<br />
<br /><a target="_new" rel="nofollow" href="http://code.google.com/sm_thirdparty.html">Google&#8217;s List of Third Party Generators</a></p>
<p>One of the easiest to use is <a target="_new" rel="nofollow" href="http://www.xml-sitemaps.com/">www.xml-sitemaps.com</a>, and you can<br />
<br />index up to 500 pages with this online Generator very quickly and it will<br />
<br />give you the sitemap XML file Google needs to index your site.</p>
<p>It will go into your site, spider it and index all your pages into an<br />
<br />XML sitemap of your site. You can download this file, Compressed or Non-<br />
<br />compressed and make minor changes such as setting the priority,<br />
<br />changing frequency, etc.</p>
<p>Then upload this file to your site as sitemap.xml to the root directory<br />
<br />of your server i.e. where you have your homepage. Then notify Google<br />
<br />Sitemaps of your XML file and you&#8217;re in business.</p>
<p>Of course, the only <b>drawback</b>, if you constantly add pages to your site<br />
<br />you will need to also add these pages to your XML sitemap file.<br />
<br />This won&#8217;t be much of a problem unless you&#8217;re daily adding pages<br />
<br />to your site &#8212; then you will need something like the PHP or Python<br />
<br />generator to do all this for you automatically.</p>
<p>Google is still the major search engine on the web so getting your<br />
<br />pages indexed and updated quickly is the major reason to use Google<br />
<br />Sitemaps. If you want your site to remain competitive it&#8217;s probably<br />
<br />the wisest route to take.</p>
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td valign="top">
<p>To learn more about the different Services and Programs offered</p>
<p>by Google click here: <a target="_new" href="http://www.bizwaremagic.com/Google_Cash_File.htm">Google Adsense &amp; Google Adwords</a></p>
<p>Copyright &copy; 2005 Titus Hoskins of <a target="_new" href="http://www.bizwaremagic.com/">http://www.bizwaremagic.com</a></p>
<p>This article may be freely distributed if this resource box stays attached.</p>
<p style="margin-bottom:1em;">Article Source:<br />
						<a href="?expert=Titus_Hoskins"><br />
							http://EzineArticles.com/?expert=Titus_Hoskins						</a>
					</p>
</td>
<td>
<div style="padding:5px; margin:0 0 0 10px;border:1px solid #fff;background-color:#fff;">
													<img height="90" width="75" src="http://ezinearticles.com/members/mem_pics/Titus-Hoskins_1561.jpg" border="0" alt="Titus Hoskins - EzineArticles Expert Author" title="Titus Hoskins"></p>
</td>
</tr>
</table>
<p>	<!--UdmComment--><br />
	<!</p>
<p><u>More info about Joomla content timestamp:</u></p>
<p><a href=http://www.joomlatwork.com/products/components/sef-patch-extended.html>Joomla SEO patch extended version &#8211; Joomlatwork</a></p>
<p>JoomlAtWork SEO patch component for optimizing Joomla for Search engines</p>
<p><a href=http://www.bestofjoomla.com/component/option,com_mtree/task,viewlink/link_id,41/Itemid,95/>Best of Joomla &#8211; News Show GK3</a></p>
<p>FireBoard, FireMessage home. Commercial and Free Joomla templates, Joomla 1.5 Templates, Joomla Extensions, Joomla Resources, Tutorials and news&#8230;</p>
<p><a href=http://www.joomlaos.de/Joomla_CMS_Downloads/Joomla_Module/DateDiff.html>Joomla CMS Downloads &#8211; Templates und Erweiterungen &#8211; DateDiff</a></p>
<p>Portal zum Joomla Content Management System (CMS). Downloads, Berichte und Kommentare zu aktuellen Entwicklungen zum CMS.</p>
<p><a href=http://extensions.joomla.org/extensions/external-contents/rss-readers/1723>Simple RSS Feed Reader &#8211; Joomla! Extensions Directory</a></p>
<p>Adding RSS syndicated content inside your Joomla! website is now super-easy and simple with the  Simple RSS Feed Reader  Module from JoomlaWorks. &#8230;</p>
<p><a href=http://www.maycode.com/index.php/hotspot/32-web20/779-mysql.html>mysql jobqueue</a></p>
<p><b>Joomla</b>!-å¼?æºå¤©ç©º &#8230; `jobretrycount` int(10) unsigned NOT NULL, `jobsubmiters` varchar(45) NOT NULL, `jobpriority` int(10) unsigned NOT NULL, `joblastaction` <b>timestamp</b> NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`jobid`), KEY `STATUS_IDX` (`jobstatus`) USING HASH ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT=&#8217;job queue&#8217;;. &#8212; &#8211; Definition of procedure `qpurge` &#8211;. DROP PROCEDURE IF EXISTS `qpurge`;. DELIMITER $$ &#8230;</p>
<p><a href=http://www.kunena.com/forum/134-installation-upgrade-and-migration/41365-migrate-yuku-to-kunena#41453>Subject: Migrate Yuku to Kunena &#8211; by: sozzled</a></p>
<p>To address your <b>timestamp</b> issue, you can change the time when a message was posted if you know anything about MySQL and about MySQL time values. Kunena&#8217;s messages are stored in the database table jos_fb_messages ; the message <b>timestamp</b> &#8230;</p>
<p><a href=http://www.thefactory.ro/joomla-forum/article-factory-manager/timestamp-not-correct-850.0.html.html>Timestamp Not Correct</a></p>
<p>Joomla Components, Plugins, Extensions, Modules and Mambots. Download Joomla Here, &#8230; Timestamp for Visitor Submitted articles was not being handled properly and all content &#8230;</p>
<p><a href=http://www.cmsfruit.com/support/forums/7-general-questions/631-time-stamp-where-is-it-pulling-from.html?limit=6&#038;start=6>Time Stamp &#8211; Where is it pulling from &#8211; CMS Fruit Forum</a></p>
<p>Administration Software, and home of JLive! Chat &#8211; The Ultimate Joomla! Live Chat Software.. Time Stamp &#8211; Where is it pulling from (2/3) &#8211; JLive! Chat &#8230;</p>
<p><a href=http://apoll.genev.info/forum?func=view&#038;catid=8&#038;id=759#759>Subject: Change date format? &#8211; by: kurtb</a></p>
<p>Where can I edit the date format for the polls? I would like the Start and End date to be: mm-dd-yyyy instead of: yyyy-mm-dd and I would like to get rid of the <b>time stamp</b> all together.</p>
<p><a href=http://api.joomla.org/Joomla-Framework/User/JUser.html>Docs for class JUser</a></p>
<p>Joomla! API Reference &#8211; Application Programming Interface for Joomla! &#8230; Content on this site is copyright Â© 2005 &#8211; 2008 Open Source Matters Inc and can be used &#8230;</p>
<p><a href=http://usawebhosting.biz/computers-software/21336-not-showing-timestamp-field.html>Not showing timestamp field</a></p>
<p>Joomla! &#8211; the dynamic portal engine and content management system</p>
<p>This post was mainly about Joomla content timestamp, you are welcomed to comment here about <b>Joomla content timestamp</b>.</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://thetoptrends.net/joomla-content-timestamp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unix related blog site</title>
		<link>http://thetoptrends.net/unix-related-blog-site/</link>
		<comments>http://thetoptrends.net/unix-related-blog-site/#comments</comments>
		<pubDate>Sat, 13 Mar 2010 10:41:42 +0000</pubDate>
		<dc:creator>hitechist</dc:creator>
				<category><![CDATA[Php]]></category>

		<guid isPermaLink="false">http://thetoptrends.net/unix-related-blog-site/</guid>
		<description><![CDATA[This article is about &#8220;Unix related blog site&#8221;, we hope to bring more articles about &#8220;Unix related blog site&#8221; in the near future:
The internet is the fastest mode of sharing things with your friends and relatives. Earlier internet was used only for the purpose of receiving and sending mails and chatting. But nowadays it is [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>This article is about &#8220;Unix related blog site&#8221;, we hope to bring more articles about &#8220;Unix related blog site&#8221; in the near future:</p>
<p>The internet is the fastest mode of sharing things with your friends and relatives. Earlier internet was used only for the purpose of receiving and sending mails and chatting. But nowadays it is used for much purpose such as uploading and downloading of videos, music files, image files, game setups, software setups and various other documents. You can easily send and receive large video files up to 150-200 mb limit of size through internet.</p>
<p>If you want to share something with one of your friend staying in your locality then you can always make use of LAN. LAN is a local area network connection in which you can do transfer of files without much difficulty. You must first create a Hub of your own in which you can invite the people staying in your locality. These people can then connect with each other and also with you through the hub which you have created. Each of you can then share the files and folders of your computer to start the uploading and downloading. There is no size limit or even time limit for next uploading and downloading which you have to face in internet. You need not pay any extra money to get the services of LAN; it is somewhat illegal considering piracy. Also you get much higher speed in LAN which you normally get in your Internet connection.</p>
<p>For sending large files to a computer in different locations, you can use FTP service. This service is mostly used in offices. FTP is nothing but File Transfer Protocol networking service through which you can send as well as receive large files. For this both the sender and receiver should have FTP service settings in their place. Often you will get FTP service on the client&#8217;s computer and you have many options and connections when you are transferring files through FTP services. There is no size limit of the file while you are transferring through FTP services. Any number of files can be sending and received through the FTP services.</p>
<p>Other than FTP, there is yet another networking protocol named SSH File Transfer Protocol. They are also referred to as Secure File Transfer Protocol. There are many other options other than sending and receiving of files in SFTP such as File Management and File Access. Other than this you can also transfer data through SCP File Transfer which is possible only if you are having UNIX as operating system on your computer. You should be aware of the programming codes in order to transfer data through SCP using the UNIX operating system.</p>
<p>There are many websites where you can first upload the file which you want to share and then these websites will provide you a link which can be used as a file distribution source. Disadvantages of such storage spaces are size limitation of a single file, no of files which can be uploaded and also time limit for which you can make next file upload.</p>
<p>With all these services it has become very easy to send and receive files with or without internet connections.</p>
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td valign="top">
<p>Latest news related to <a target="_new" href="http://www.filesdirect.com/blog/default.aspx">file transfer service</a> and <a target="_new" href="http://www.filesdirect.com/">large file transfer</a> can be accessed at our online file transfer website.</p>
<p style="margin-bottom:1em;">Article Source:<br />
						<a href="?expert=Mary_K_Lam"><br />
							http://EzineArticles.com/?expert=Mary_K_Lam						</a>
					</p>
</td>
<td>
<div style="padding:5px; margin:0 0 0 10px;border:1px solid #fff;background-color:#fff;">
</td>
</tr>
</table>
<p>	<!--UdmComment--><br />
	<!</p>
<p><u>More info about Unix related blog site:</u></p>
<p><a href=http://www.unixblog.org/>UNIXBlog &#8211; A site for Linux/UNIX users</a></p>
<p>News &#8211; Various news related to Linux/UNIX or any other open-source project. &#8230; Blog &#8211; Any articles related to this project can be found here. &#8230;</p>
<p><a href=http://coolthingoftheday.blogspot.com/2010/03/utilities-and-sdk-for-subsystem-for.html>â??Utilities and SDK for Subsystem for <b>UNIX</b>-based Applications <b>&#8230;</b></a></p>
<p>Utilities and SDK for <b>UNIX</b>-Based Applications is an add-on to the Subsystem for <b>UNIX</b>-Based Applications (referred to as SUA, hence forth) component that shipped in Microsoft Windows 7/ Windows Server 2008 R2. &#8230;</p>
<p><a href=http://www.tripwiremagazine.com/2010/03/20-most-popular-open-source-software-ever-2.html>20 Most Popular Open Source Software Ever</a></p>
<p>20 Most Popular Open Source Software Ever These days, you can quite easily buy a brand-spanking-new computer and install all the software you need for free, using applications offered under the Open Software License. You can get a free image editor, a free sound editor, a free word processor, media <b>&#8230;</b></p>
<p><a href=http://www.zdnet.co.uk/tsearch/site+of+microsoft.htm>site of microsoft Content at ZDNet UK</a></p>
<p>News Articles, Whitepapers, Downloads, Opinion, Videos and Resources relating to site of microsoft</p>
<p><a href=http://recruitmentprof.wordpress.com/2010/03/02/production-support-engineer-%e2%80%93-sf-ca-locals-only-%e2%80%93-please-email-resume-to-mgagnonbstonetech-com/>Production Support Engineer â?? SF, CA (Locals Only) â?? Please email resume to mgagnon@bstonetech.com</a></p>
<p>Position Duration: Full Time Start: ASAP Company Type: Retail Openings: 1 Employment Type: W2 Salary *** If this position is not the right fit for your background â?? Do you possibly know anyone that may be a fit â?? referring a friend is a great thing to do. Required Skills: This person will be doing a <b>&#8230;</b></p>
<p><a href=http://visapoint.eu.com/2010/03/multi-user-vs-client-server-application/>Technical News Â» <b>Blog</b> Archive Â» Multi-user Vs Client Server <b>&#8230;</b></a></p>
<p>All the products attempted to maintain some of the performance advantages afforded by locality of reference (storage of <b>related</b> columns and records as close as possible to the primary column and record). The development of a relational algebra defining &#8230; LAN Manager/X is the standard product for client/server implementations using <b>UNIX</b> System V as the server operating system. Microsoft released its Advanced Server product with Windows NT in the third quarter of 1993. &#8230;</p>
<p><a href=http://ilovebees.blogspot.com/2004/07/ladybee777-odd-behavior-cry-for-help.html>I Love Bees: Ladybee777  odd behavior cry for help </a></p>
<p>&#8230; site immediately, purchase her a new and similarly named domain and get her web site &#8230; novels have any connection to the date August 24. Or could this be related to Marathon? &#8230;</p>
<p><a href=http://www.askdavetaylor.com/can_a_unix_site_earn_1030day_in_adsense_revenue.html>Can a Unix site earn $10-$30/day in adsense revenue? :: Free &#8230;</a></p>
<p>Free Tech Support on Can a Unix site earn $10-$30/day in adsense revenue? from Dave Taylor</p>
<p><a href=http://www.novian.biz/>Search, Process, and Post It. Let&#8217;s Talk about Everything &#8230;</a></p>
<p>Especially For Bloggers The Dollar Using Blog Search him.But before I continue, &#8230; By joining this site, you will find a variety of investment options you might &#8230;</p>
<p><a href=http://www.monster-submit.com/blog/categories/webmaster-related/unix/>Virtual Solutions : Main : Blog</a></p>
<p>Home Products Members Contact Us Forums Blog Directory About Us Site Menu &#8230; Webmaster Related (3) UNIX (3) Website Related (1) Archive for the UNIX&#8217; Category. Tip: &#8230;</p>
<p><a href=http://technologymicro.com/03/comprehension-and-communication-more-than-being-about-technology/>Comprehension and Communication â?? â??More Than Being About Technologyâ?</a></p>
<p>The â??Information Ageâ? has been with us for some time now. Jules Vern, Isaac Asimov, and Eugene Wesley (Gene Roddenberry) are just a few of the visionaries that many people ridiculed and laughed at for their dreams and insight(s). Many may well argue that they were just plain crazy. I am not one of t <b>&#8230;</b></p>
<p><a href=http://www.cyberciti.biz/>nixCraft</a></p>
<p>Linux blog by Vivek &#8211; Includes news, help, tutorials, programming, tips and how-to guides for Linux, UNIX, and BSD.</p>
<p><a href=http://www.suramya.com/blog/category/linuxunix-related/>Suramya&#8217;s Blog   Linux/Unix Related</a></p>
<p>Filed under: Interesting Sites, Linux/Unix Related â?? Suramya @ 11:37 &#8230; The site TinyOgg.com which was launched recently allows you watch, listen and download &#8230;</p>
<p><a href=http://www.webperformanceinc.com/load_testing/blog/2010/03/case-study-lenox-finds-a-baseline-in-the-cloud/>Case study: Lenox Finds a Baseline in the Cloud | Load Testing <b>Blog</b></a></p>
<p>Load Tester was Lynch&#8217;s fastest answer to the question â??How many users can your web <b>site</b> handle?â?. Lynch had a few issues while getting set up for testing, mainly <b>related</b> to migrating Load Tester to another Windows server, and to Amazon cloud setup. &#8230; This round of testing has convinced Lynch that Windows is more challenging and costly for Lenox than a <b>Unix</b> platform would be, and he is now making plans to migrate for better performance in the future. &#8230;</p>
<p>This post was mainly about Unix related blog site, you are welcomed to comment here about <b>Unix related blog site</b>.</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://thetoptrends.net/unix-related-blog-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
