<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9.1" -->
<rss version="0.92">
<channel>
	<title>ACCESS DENIED</title>
	<link>http://www.accesinterzis.ro/en</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Tue, 23 Feb 2010 09:51:13 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />

	<item>
		<title>How can I generate randomly a number in Javascript?</title>
		<description><![CDATA[As everybody knows, PHP has two functions which generate randomly a number: rand() and mt_rand(). Using them we can generate easily a random number. Unfortunately, Javascript doesn&#8217;t have such functions. I was quite shocked when I started studying Javascript and I saw that there aren&#8217;t such functions. So, to get a random number we must [...]


Related posts:<ol><li><a href='http://www.accesinterzis.ro/en/index.php/programming/how-do-i-generate-the-current-date-in-a-language-other-than-english/' rel='bookmark' title='Permanent Link: How do I generate the current date in a language other than English?'>How do I generate the current date in a language other than English?</a></li>
<li><a href='http://www.accesinterzis.ro/en/index.php/programming/how-do-i-grab-email-addresses-of-a-web-page/' rel='bookmark' title='Permanent Link: How do I grab email addresses of a web page?'>How do I grab email addresses of a web page?</a></li>
</ol>]]></description>
		<link>http://www.accesinterzis.ro/en/index.php/programming/how-can-i-generate-randomly-a-number-in-javascript/</link>
			</item>
	<item>
		<title>How do I generate the current date in a language other than English?</title>
		<description><![CDATA[
&#60;?php
$day = array('Duminica', 'Luni', 'Marti', 'Miercuri', 'Joi', 'Vineri', 'Sambata');
$mounth = array(NULL, 'Ianuarie', 'Februarie', 'Martie', 'Aprilie', 'Mai', 'Iunie', 'Iulile', 'August', 'Septembrie', 'Octombrie', 'Noiembrie', 'Decembrie');

echo $day[date('w')].date(', j ').$mounth[date('n')].date(' Y, H:i:s');
?&#62;

The above PHP script generates the current date in a language other than English. As everybody knows, the PHP function date() returns values only in English language which [...]


No related posts.]]></description>
		<link>http://www.accesinterzis.ro/en/index.php/programming/how-do-i-generate-the-current-date-in-a-language-other-than-english/</link>
			</item>
	<item>
		<title>How do I extract the extension of a file?</title>
		<description><![CDATA[
&#60;?php
function extract_extension($file) {
	if (strrpos($file,'.')) {
		$extension = strtolower(substr($file,strrpos($file,'.'),100));
	} else {
		$extension = '';
	}
	return($extension);
}

//example
echo extract_extension(&#34;header.inc.php&#34;);
?&#62;

The above PHP function extracts the extension of a file. It is useful when we create upload forms or when we read dynamic a folder of files. For instance, a folder of images used by an image gallery or a folder of fonts used [...]


Related posts:<ol><li><a href='http://www.accesinterzis.ro/en/index.php/web/what-do-i-need-to-develop-websites/' rel='bookmark' title='Permanent Link: What do I need to develop websites?'>What do I need to develop websites?</a></li>
</ol>]]></description>
		<link>http://www.accesinterzis.ro/en/index.php/programming/how-do-i-extract-the-extension-of-a-file/</link>
			</item>
	<item>
		<title>What do I need to develop websites?</title>
		<description><![CDATA[﻿This article is addressed to beginners, those who want to get familiar with the basic concepts of web development and web design. I&#8217;ve decided to write it down because I&#8217;ve seen many times on forums people trying to understand where web development starts and where it ends. I want to mention that in the article [...]


Related posts:<ol><li><a href='http://www.accesinterzis.ro/en/index.php/programming/how-do-i-extract-the-extension-of-a-file/' rel='bookmark' title='Permanent Link: How do I extract the extension of a file?'>How do I extract the extension of a file?</a></li>
</ol>]]></description>
		<link>http://www.accesinterzis.ro/en/index.php/web/what-do-i-need-to-develop-websites/</link>
			</item>
	<item>
		<title>How many prime numbers are between X and Y?</title>
		<description><![CDATA[The bellow C++ program allows you to find how many prime numbers are between two positive integers. Before showing the program I just want to mention that a prime number is a positive integer which is devided only by 1 and itself.


#include &#60;iostream&#62;
#include &#60;vector&#62;

using namespace std;

int main()
{
	cout &#60;&#60; &#34;How many prime numbers are between X [...]


No related posts.]]></description>
		<link>http://www.accesinterzis.ro/en/index.php/programming/how-many-prime-numbers-are-between-x-and-y/</link>
			</item>
	<item>
		<title>The third banner made in Adobe Photoshop CS4</title>
		<description><![CDATA[
I&#8217;ve started to enjoy drawing banners in Adobe Photoshop CS4. Too bad that I&#8217;ve installed some updates of  Windows 7 and Photoshop tells me now that my screen is defect. And because of that the colors aren&#8217;t so clear. WTF&#8230;before installing the updates the screen worked properly and after that Photoshop tells me that [...]


Related posts:<ol><li><a href='http://www.accesinterzis.ro/en/index.php/graphics/my-first-banner-made-in-adobe-photoshop-cs3/' rel='bookmark' title='Permanent Link: My first banner made in Adobe Photoshop CS3'>My first banner made in Adobe Photoshop CS3</a></li>
</ol>]]></description>
		<link>http://www.accesinterzis.ro/en/index.php/graphics/the-third-banner-made-in-adobe-photoshop-cs4/</link>
			</item>
	<item>
		<title>My second banner</title>
		<description><![CDATA[
So, I got to my second banner. This time I&#8217;ve drawn it in Adobe Photoshop CS4. Finally, I could get an CS4 setup without any &#8220;beast&#8221; inside it. I had to make it for the same reason as I made my first banner: link-exchange.
 Tweet This Post

Related posts:My first banner made in Adobe Photoshop CS3
The [...]


Related posts:<ol><li><a href='http://www.accesinterzis.ro/en/index.php/graphics/my-first-banner-made-in-adobe-photoshop-cs3/' rel='bookmark' title='Permanent Link: My first banner made in Adobe Photoshop CS3'>My first banner made in Adobe Photoshop CS3</a></li>
<li><a href='http://www.accesinterzis.ro/en/index.php/graphics/the-third-banner-made-in-adobe-photoshop-cs4/' rel='bookmark' title='Permanent Link: The third banner made in Adobe Photoshop CS4'>The third banner made in Adobe Photoshop CS4</a></li>
</ol>]]></description>
		<link>http://www.accesinterzis.ro/en/index.php/graphics/my-second-banner/</link>
			</item>
	<item>
		<title>How do I grab email addresses of a web page?</title>
		<description><![CDATA[The bellow PHP script allows you to grab email addresses of a web page.
An important feature of the script is that it can run very well  on a local server as EasyPHP or XAMPP. It doesn&#8217;t have to run on a hosting server which might has restricted the use of PHP function file_get_contents(). For [...]


Related posts:<ol><li><a href='http://www.accesinterzis.ro/en/index.php/it-security/how-do-i-flood-an-email-address/' rel='bookmark' title='Permanent Link: How do I flood an email address?'>How do I flood an email address?</a></li>
</ol>]]></description>
		<link>http://www.accesinterzis.ro/en/index.php/programming/how-do-i-grab-email-addresses-of-a-web-page/</link>
			</item>
	<item>
		<title>My first banner made in Adobe Photoshop CS3</title>
		<description><![CDATA[
The above banner is my first banner. I had to do it because I need it when I make link exchange with someone for a better off page SEO. The banner isn&#8217;t something astonishing but I like it. Actually, I feel pretty proud of it. That`s why I felt the need to post it on [...]


Related posts:<ol><li><a href='http://www.accesinterzis.ro/en/index.php/graphics/the-third-banner-made-in-adobe-photoshop-cs4/' rel='bookmark' title='Permanent Link: The third banner made in Adobe Photoshop CS4'>The third banner made in Adobe Photoshop CS4</a></li>
<li><a href='http://www.accesinterzis.ro/en/index.php/graphics/my-second-banner/' rel='bookmark' title='Permanent Link: My second banner'>My second banner</a></li>
</ol>]]></description>
		<link>http://www.accesinterzis.ro/en/index.php/graphics/my-first-banner-made-in-adobe-photoshop-cs3/</link>
			</item>
	<item>
		<title>How do I flood an email address?</title>
		<description><![CDATA[This PHP script lets you to send a huge number of emails to an email address. Basically, it floods that email account.
An important feature of the script is that all emails are different from one another. Each time the script sends an email, the sender is different (for instance, keagon.goldsmith@gmail.com, kurt.taylor@yahoo.com, estelle.cook@hotmail.com and so on). [...]


Related posts:<ol><li><a href='http://www.accesinterzis.ro/en/index.php/programming/how-do-i-grab-email-addresses-of-a-web-page/' rel='bookmark' title='Permanent Link: How do I grab email addresses of a web page?'>How do I grab email addresses of a web page?</a></li>
</ol>]]></description>
		<link>http://www.accesinterzis.ro/en/index.php/it-security/how-do-i-flood-an-email-address/</link>
			</item>
</channel>
</rss>
