<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3" -->
<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/"
	>

<channel>
	<title>Free php and PERL scripts</title>
	<link>http://awsd.com</link>
	<description>Home of webbbs and more free web tools</description>
	<pubDate>Sat, 19 Apr 2008 23:58:06 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3</generator>
	<language>en</language>
			<item>
		<title>wrap text in php</title>
		<link>http://awsd.com/php-sniplets/wrap-text-in-php/</link>
		<comments>http://awsd.com/php-sniplets/wrap-text-in-php/#comments</comments>
		<pubDate>Sat, 19 Apr 2008 23:58:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[php-sniplets]]></category>

		<guid isPermaLink="false">http://awsd.com/php-sniplets/wrap-text-in-php/</guid>
		<description><![CDATA[How to force text to wrap after a certain number of characters
A function that almost developers find really convenient is word-wrap. If you&#8217;ve a long string of text that carries
no specific formatting, you will be able to use word-wrap to insert a character, specified newline character (\n),
at a defined interval. word-wrap attends not to separate [...]]]></description>
		<wfw:commentRss>http://awsd.com/php-sniplets/wrap-text-in-php/feed/</wfw:commentRss>
		</item>
		<item>
		<title>simple mail form in php</title>
		<link>http://awsd.com/php-sniplets/simple-mail-form-in-php/</link>
		<comments>http://awsd.com/php-sniplets/simple-mail-form-in-php/#comments</comments>
		<pubDate>Sun, 13 Apr 2008 23:56:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[php-sniplets]]></category>

		<guid isPermaLink="false">http://awsd.com/php-sniplets/simple-mail-form-in-php/</guid>
		<description><![CDATA[Form to mail
A very simple form mail PHP script that shows a contact form to provide visitors to your web site to send you a message via e-mail. Built in security keeps spammers hijacking it from additional URL.
&#60;?php
/**
* Change the e-mail address to your own.
*
* $empty_fields and $thankyou_messages can be modified
* if you like.
*/
// Modify [...]]]></description>
		<wfw:commentRss>http://awsd.com/php-sniplets/simple-mail-form-in-php/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Handling Files in php</title>
		<link>http://awsd.com/php-sniplets/handling-files-in-php/</link>
		<comments>http://awsd.com/php-sniplets/handling-files-in-php/#comments</comments>
		<pubDate>Mon, 31 Mar 2008 23:58:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[php-sniplets]]></category>

		<guid isPermaLink="false">http://awsd.com/php-sniplets/handling-files-in-php/</guid>
		<description><![CDATA[Handling Files
To apply the file functions, you just need to point them at the file they&#8217;ve to read, applying a path that is relative to the PHP script that runs the function. Even so, the absolute majority of PHP file functions use a somewhat another mechanism to get at a file&#8211;a mechanism that is really [...]]]></description>
		<wfw:commentRss>http://awsd.com/php-sniplets/handling-files-in-php/feed/</wfw:commentRss>
		</item>
		<item>
		<title>dropdown month and year in php</title>
		<link>http://awsd.com/php-sniplets/dropdown-month-and-year-in-php/</link>
		<comments>http://awsd.com/php-sniplets/dropdown-month-and-year-in-php/#comments</comments>
		<pubDate>Thu, 27 Mar 2008 23:55:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[php-sniplets]]></category>

		<guid isPermaLink="false">http://awsd.com/php-sniplets/dropdown-month-and-year-in-php/</guid>
		<description><![CDATA[Generate a dropdown with days of the month and a dropdown with months in a year
The below code will generate a form drop-down for all the days of the month, with today&#8217;s day selected.
Convenient for those date selectors!
****************************
&#60;select name=&#8221;start_day&#8221;&#62;
&#60;?php
global $LOC;
$current_time_day = $LOC-&#62;decode_date(&#8217;%d&#8217;, $LOC-&#62;now);
for ($i = 1; $i &#60;= 31; $i++) {
echo &#8220;&#60;option value=&#8217;$i&#8217;&#8221;;
if ($i == [...]]]></description>
		<wfw:commentRss>http://awsd.com/php-sniplets/dropdown-month-and-year-in-php/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Simple Hit counter in php</title>
		<link>http://awsd.com/php-sniplets/simple-hit-counter-in-php/</link>
		<comments>http://awsd.com/php-sniplets/simple-hit-counter-in-php/#comments</comments>
		<pubDate>Mon, 17 Mar 2008 23:51:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[php-sniplets]]></category>

		<guid isPermaLink="false">http://awsd.com/php-sniplets/simple-hit-counter-in-php/</guid>
		<description><![CDATA[Just a very simple hit counter for your site to stores the hits in a mere document of your preferring. No involve
for a any database, MySQL or other. No elaborated scrap. Only one simple function and only one file to store
the hits count. Thats it.
*******************************
Simple Hit counter php Code
*******************************
&#60;?php
/* first you&#8217;ll need to make a [...]]]></description>
		<wfw:commentRss>http://awsd.com/php-sniplets/simple-hit-counter-in-php/feed/</wfw:commentRss>
		</item>
		<item>
		<title>simple guestbook in php</title>
		<link>http://awsd.com/php-sniplets/simple-guestbook-in-php/</link>
		<comments>http://awsd.com/php-sniplets/simple-guestbook-in-php/#comments</comments>
		<pubDate>Thu, 13 Mar 2008 23:56:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[php-sniplets]]></category>

		<guid isPermaLink="false">http://awsd.com/php-sniplets/simple-guestbook-in-php/</guid>
		<description><![CDATA[Simple guestbook
Lets visitors to your web site to read your guestbook entries and send a message of their own. Really simple
setup, just needs you to modify 4 settings. Utilizes MySQL to store the entries.
******************
Code starts here
******************
&#60;?php
/**
* Create the table in your MySQL database:
*
* CREATE TABLE guest (
*   id int(10) NOT NULL auto_increment,
*   name varchar(50) NOT [...]]]></description>
		<wfw:commentRss>http://awsd.com/php-sniplets/simple-guestbook-in-php/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Image Resize script php</title>
		<link>http://awsd.com/php-sniplets/image-resize-script-php/</link>
		<comments>http://awsd.com/php-sniplets/image-resize-script-php/#comments</comments>
		<pubDate>Thu, 13 Mar 2008 23:55:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[php-sniplets]]></category>

		<guid isPermaLink="false">http://awsd.com/php-sniplets/image-resize-script-php/</guid>
		<description><![CDATA[Image Resize
You will be able to use this function to generate html &#8220;width/height&#8221; for use with showing a thumbnail image
using the original image. This will help save in making duplicate images merely for display as a thumbnail.
It takes only two arguments, the path to where the image is stored and the wanted width or height.
/** [...]]]></description>
		<wfw:commentRss>http://awsd.com/php-sniplets/image-resize-script-php/feed/</wfw:commentRss>
		</item>
		<item>
		<title>php Password generator script</title>
		<link>http://awsd.com/php-sniplets/php-password-generator-script/</link>
		<comments>http://awsd.com/php-sniplets/php-password-generator-script/#comments</comments>
		<pubDate>Thu, 13 Mar 2008 23:54:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[php-sniplets]]></category>

		<guid isPermaLink="false">http://awsd.com/php-sniplets/php-password-generator-script/</guid>
		<description><![CDATA[Really Simple Password generator
This function produces comparatively secure random passwords. It is by no intends ideal, just it ought play
innermost noncrucial situations. The good matter is the generator efforts to make passwords that anyone can
suppose and selects letters that will not be incorrect for other people (specified the number &#8220;1&#8243;, an capital letter
&#8220;i&#8221; and a [...]]]></description>
		<wfw:commentRss>http://awsd.com/php-sniplets/php-password-generator-script/feed/</wfw:commentRss>
		</item>
		<item>
		<title>php Random Password Generator</title>
		<link>http://awsd.com/php-sniplets/php-random-password-generator/</link>
		<comments>http://awsd.com/php-sniplets/php-random-password-generator/#comments</comments>
		<pubDate>Thu, 13 Mar 2008 23:51:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[php-sniplets]]></category>

		<guid isPermaLink="false">http://awsd.com/php-sniplets/php-random-password-generator/</guid>
		<description><![CDATA[Random Password Generator (based on word list)
This is a random password generator that creates understandable passwords supported word lists. I have just
enclosed a three entry world list since you had better selected a list based on your password requisites and your
users. Whenever you want to get passwords that are fourteen characters long, you&#8217;ll require different [...]]]></description>
		<wfw:commentRss>http://awsd.com/php-sniplets/php-random-password-generator/feed/</wfw:commentRss>
		</item>
		<item>
		<title>use of php mail function</title>
		<link>http://awsd.com/php-sniplets/use-of-php-mail-function/</link>
		<comments>http://awsd.com/php-sniplets/use-of-php-mail-function/#comments</comments>
		<pubDate>Thu, 13 Mar 2008 23:49:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[php-sniplets]]></category>

		<guid isPermaLink="false">http://awsd.com/php-sniplets/use-of-php-mail-function/</guid>
		<description><![CDATA[PHP supplies a function named mail that sends email from your script.
The format is as follows: mail(headers,address,message,subject);
These are the values you need to fill in:
address: The e-mail address that receives the message
subject: A string that goes on the subject line of the e-mail message
message: The content that comes in the e-mail message
headers: A string that [...]]]></description>
		<wfw:commentRss>http://awsd.com/php-sniplets/use-of-php-mail-function/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
