<?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>Computer e Web .net &#187; mysql</title>
	<atom:link href="http://www.computereweb.net/tag/mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.computereweb.net</link>
	<description>Blog sullo sviluppo Web</description>
	<lastBuildDate>Tue, 20 Jul 2010 09:35:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>SCRIPT PHP/MYSQL: Visualizzare i dati</title>
		<link>http://www.computereweb.net/script-phpmysql-visualizzare-i-dati/</link>
		<comments>http://www.computereweb.net/script-phpmysql-visualizzare-i-dati/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 14:34:30 +0000</pubDate>
		<dc:creator>computereweb.net</dc:creator>
				<category><![CDATA[GUIDE]]></category>
		<category><![CDATA[guida]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://www.computereweb.net/?p=697</guid>
		<description><![CDATA[SECONDA LEZIONE:
Una volta creato il database e riempito le tabelle con i dati. L&#8217;operazione più importante è di riuscirre ad estrarre e far visualizzare in una pagina php del proprio sito le informazioni contenute, facendo le dovute selezioni (per maggiori informazioni consultare la guida mysql).
Apriamo con un editor testuale (va bene anche il block notes [...]]]></description>
			<content:encoded><![CDATA[<p>SECONDA LEZIONE:<br />
Una volta creato il database e riempito le tabelle con i dati. L&#8217;operazione più importante è di riuscirre ad estrarre e far visualizzare in una pagina php del proprio sito le informazioni contenute, facendo le dovute selezioni (per maggiori informazioni consultare la <a href="http://www.computereweb.net/mysql-guida/">guida mysql</a>).<br />
Apriamo con un editor testuale (va bene anche il block notes di Windows), un nuovo file che salviamo con estensione .php (se è la pagina di default del sito, la chiamaremo index.php).<br />
Includiamo il file che racchiude le informazioni per connetterci al database (<a href="http://www.computereweb.net/script-phpmysql-come-conettersi-al-database/">vedere la prima lezione.</a><br />
<textarea rows="1" cols="60" readonly=""><br />
<?php require('configurazione.php'); ?><br />
</textarea><br />
Ci connettiamo al database e selezionamo dalla tabella gli ultimi 10 titoli inseriti.<br />
<textarea rows="10" cols="60" readonly=""><br />
<?php<br />
mysql_select_db($database_nome, $connesione);<br />
$query_ultimidatiinseriti = "SELECT * FROM nometabella ORDER BY id DESC LIMIT 0,10";<br />
$ultimidatiinseriti = mysql_query($query_ultimidatiinseriti, $connesione) or die(mysql_error());<br />
$row_ultimidatiinseriti = mysql_fetch_assoc($ultimidatiinseriti);<br />
?><br />
</textarea><br />
Utilizzando un ciclo while, stampiamo tutti i dati trovati<br />
<textarea rows="10" cols="60" readonly=""><br />
   <?php do { ?><br />
<?php echo $row_ultimidatiinseriti['nome']; ?><br />
<?php echo $row_ultimidatiinseriti['cognome']; ?><br />
<?php echo $row_ultimidatiinseriti['indirizzo']; ?><br />
<?php echo $row_ultimidatiinseriti['citta']; ?><br />
 <?php } while ($row_ultimidominiinseriti = mysql_fetch_assoc($ultimidatiinseriti)); ?><br />
</textarea></p>
<p><strong>ISTRUZIONI PHP: STAMPARE A VIDEO CON ECHO O PRINT</strong><br />
Come vediamo qui sopra per stampare un informazione a video si usa il comando echo.<br />
Il contenuto di echo, si può scrivere opzionalmente tra parentesi e optando tra gli apici e le virgolette.<br />
nel caso che includa solamente il testo:<br />
echo (&#8220;prova&#8221;);<br />
echo &#8220;prova&#8221;;<br />
echo (&#8216;prova&#8217;);<br />
echo &#8216;prova&#8217;;<br />
echo &#8216;prova1&#8242;,&#8217;prova2&#8242;;<br />
Inoltre all&#8217;interno di echo è possibile usare l&#8217;html (gli stili, la formattazione &#8230;).<br />
echo(&#8220;<strong>prova</strong>&#8220;);<br />
nel caso in cui stampi il valore di una variabile:<br />
echo &#8216;$prove&#8217;;</p>
<p>in alternativa è possibile usare il comando print. La differenza è che print accetta una sola stringa a differenza di echo [echo 'prova1','prova2';]<br />
print &#8216;prova&#8217;;<br />
print &#8216;$prove&#8217;;</p>
<p><a href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fwww.computereweb.net%2Fscript-phpmysql-visualizzare-i-dati%2F&amp;linkname=SCRIPT%20PHP%2FMYSQL%3A%20Visualizzare%20i%20dati" title="Facebook" rel="nofollow" target="_blank"><img src="http://www.computereweb.net/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a> <a href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fwww.computereweb.net%2Fscript-phpmysql-visualizzare-i-dati%2F&amp;linkname=SCRIPT%20PHP%2FMYSQL%3A%20Visualizzare%20i%20dati" title="Twitter" rel="nofollow" target="_blank"><img src="http://www.computereweb.net/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a href="http://www.addtoany.com/add_to/windows_live_spaces?linkurl=http%3A%2F%2Fwww.computereweb.net%2Fscript-phpmysql-visualizzare-i-dati%2F&amp;linkname=SCRIPT%20PHP%2FMYSQL%3A%20Visualizzare%20i%20dati" title="Windows Live Spaces" rel="nofollow" target="_blank"><img src="http://www.computereweb.net/wp-content/plugins/add-to-any/icons/spaces.png" width="16" height="16" alt="Windows Live Spaces"/></a> <a href="http://www.addtoany.com/add_to/wordpress?linkurl=http%3A%2F%2Fwww.computereweb.net%2Fscript-phpmysql-visualizzare-i-dati%2F&amp;linkname=SCRIPT%20PHP%2FMYSQL%3A%20Visualizzare%20i%20dati" title="WordPress" rel="nofollow" target="_blank"><img src="http://www.computereweb.net/wp-content/plugins/add-to-any/icons/wordpress.png" width="16" height="16" alt="WordPress"/></a> <a href="http://www.addtoany.com/add_to/yahoo_messenger?linkurl=http%3A%2F%2Fwww.computereweb.net%2Fscript-phpmysql-visualizzare-i-dati%2F&amp;linkname=SCRIPT%20PHP%2FMYSQL%3A%20Visualizzare%20i%20dati" title="Yahoo Messenger" rel="nofollow" target="_blank"><img src="http://www.computereweb.net/wp-content/plugins/add-to-any/icons/yim.png" width="16" height="16" alt="Yahoo Messenger"/></a> <a href="http://www.addtoany.com/add_to/myspace?linkurl=http%3A%2F%2Fwww.computereweb.net%2Fscript-phpmysql-visualizzare-i-dati%2F&amp;linkname=SCRIPT%20PHP%2FMYSQL%3A%20Visualizzare%20i%20dati" title="MySpace" rel="nofollow" target="_blank"><img src="http://www.computereweb.net/wp-content/plugins/add-to-any/icons/myspace.png" width="16" height="16" alt="MySpace"/></a> <a href="http://www.addtoany.com/add_to/oknotizie?linkurl=http%3A%2F%2Fwww.computereweb.net%2Fscript-phpmysql-visualizzare-i-dati%2F&amp;linkname=SCRIPT%20PHP%2FMYSQL%3A%20Visualizzare%20i%20dati" title="Oknotizie" rel="nofollow" target="_blank"><img src="http://www.computereweb.net/wp-content/plugins/add-to-any/icons/oknotizie.png" width="16" height="16" alt="Oknotizie"/></a> <a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fwww.computereweb.net%2Fscript-phpmysql-visualizzare-i-dati%2F&amp;linkname=SCRIPT%20PHP%2FMYSQL%3A%20Visualizzare%20i%20dati" title="Digg" rel="nofollow" target="_blank"><img src="http://www.computereweb.net/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fwww.computereweb.net%2Fscript-phpmysql-visualizzare-i-dati%2F&amp;linkname=SCRIPT%20PHP%2FMYSQL%3A%20Visualizzare%20i%20dati" title="Delicious" rel="nofollow" target="_blank"><img src="http://www.computereweb.net/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/google_reader?linkurl=http%3A%2F%2Fwww.computereweb.net%2Fscript-phpmysql-visualizzare-i-dati%2F&amp;linkname=SCRIPT%20PHP%2FMYSQL%3A%20Visualizzare%20i%20dati" title="Google Reader" rel="nofollow" target="_blank"><img src="http://www.computereweb.net/wp-content/plugins/add-to-any/icons/reader.png" width="16" height="16" alt="Google Reader"/></a> <a href="http://www.addtoany.com/add_to/hotmail?linkurl=http%3A%2F%2Fwww.computereweb.net%2Fscript-phpmysql-visualizzare-i-dati%2F&amp;linkname=SCRIPT%20PHP%2FMYSQL%3A%20Visualizzare%20i%20dati" title="Hotmail" rel="nofollow" target="_blank"><img src="http://www.computereweb.net/wp-content/plugins/add-to-any/icons/live.png" width="16" height="16" alt="Hotmail"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.computereweb.net%2Fscript-phpmysql-visualizzare-i-dati%2F&amp;linkname=SCRIPT%20PHP%2FMYSQL%3A%20Visualizzare%20i%20dati">Condividi</a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.computereweb.net/script-phpmysql-visualizzare-i-dati/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SCRIPT PHP/MYSQL: Come conettersi al database</title>
		<link>http://www.computereweb.net/script-phpmysql-come-conettersi-al-database/</link>
		<comments>http://www.computereweb.net/script-phpmysql-come-conettersi-al-database/#comments</comments>
		<pubDate>Sat, 26 Dec 2009 17:46:48 +0000</pubDate>
		<dc:creator>computereweb.net</dc:creator>
				<category><![CDATA[Linguaggi di Programmazione]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.computereweb.net/?p=684</guid>
		<description><![CDATA[


 Con questo articolo ci occuppiamo dell&#8217;interazione tra il linguaggio php con il database mysql.
Premessa, entrate nel pannello di controllo del vostro hosting, create un nuovo database e annotatevi i seguenti dati: nome, username e password del database e host (valore predefinito dal provider).
Il primo passo fondamentale è quello di creare un file .php (generalmente [...]]]></description>
			<content:encoded><![CDATA[<table align="left" cellpadding=0 cellspacing=0><tr><td><script type="text/javascript"><!--
google_ad_client = "pub-9617687714544014";
/* computereweb art 336x280 */
google_ad_slot = "2032829207";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></td></tr></table> <p>Con questo articolo ci occuppiamo dell&#8217;interazione tra il linguaggio php con il database mysql.<br />
Premessa, entrate nel pannello di controllo del vostro hosting, create un nuovo database e annotatevi i seguenti dati: nome, username e password del database e host (valore predefinito dal provider).<br />
Il primo passo fondamentale è quello di creare un file .php (generalmente chiamato: config.php) con le seguenti istruzioni:<br />
<textarea rows="20" cols="50" readonly="readonly"><br />
<?php<br />
$hostname = "localhost"; // Scrivere l'hostname generalmente localhost<br />
$database_nome= "nomedb"; // Scrivere il nome del database<br />
$username = "userdb"; // Scrivere l'username di accesso a mysql<br />
$password = "password"; // Scrivere la password di accesso a mysql<br />
$tabella = "domini"; // Se eventualmente volete indicare anche il nome della tabella</p>
<p>$connesione = mysql_connect($hostname, $username, $password, $tabella); // si connette al databse<br />
mysql_select_db($database_nome, $connesione); // seleziona il database la connessione è avviata.<br />
?><br />
</textarea></p>
<p>Un&#8217;altro dato che si può aggiungere è di scrivere un messaggio di errore in caso di non connessione.<br />
<textarea rows="20" cols="50" readonly="readonly"><br />
<?php<br />
$hostname = "localhost"; // Scrivere l'hostname generalmente localhost<br />
$database_nome= "nomedb"; // Scrivere il nome del database<br />
$username = "userdb"; // Scrivere l'username di accesso a mysql<br />
$password = "password"; // Scrivere la password di accesso a mysql<br />
$tabella = "domini"; // Se eventualmente volete indicare anche il nome della tabella</p>
<p>$connesione = mysql_connect($hostname, $username, $password, $tabella) or die ("errore rilevato" .mysql_error()); // si connette al database e in caso di errore da un messaggio a video, abbiamo aggiunto or die e mysql_error<br />
mysql_select_db($database_nome, $connesione); // seleziona il database la connessione è avviata.<br />
print ("Connessione avvenuta con successo"); // in fase di test, invece di una inquietante pagina bianca, possiamo far visualizzare un messaggio a video che ci comunica l'avvenuta connessione, utilizzando l'istruzione print oppure echo.<br />
?><br />
</textarea></p>
<p>A questo punto, usare un require o include per inserire e quindi richiamare il file. Ricordiamo che la differenza nell&#8217;usare l&#8217;uno o l&#8217;altro è dato che entrambi in caso di errore, restituiscano un warning, ma se si è scelto require lo script si blocca e non va avanti a differenza di include.<br />
In tutte le pagine del vostro script dovrete inserire:<br />
<textarea rows="5" cols="50" readonly="readonly"><br />
<?php include("config.php"); ?><br />
oppure<br />
<?php require("config.php"); ?><br />
</textarea></p>
<p><a href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fwww.computereweb.net%2Fscript-phpmysql-come-conettersi-al-database%2F&amp;linkname=SCRIPT%20PHP%2FMYSQL%3A%20Come%20conettersi%20al%20database" title="Facebook" rel="nofollow" target="_blank"><img src="http://www.computereweb.net/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a> <a href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fwww.computereweb.net%2Fscript-phpmysql-come-conettersi-al-database%2F&amp;linkname=SCRIPT%20PHP%2FMYSQL%3A%20Come%20conettersi%20al%20database" title="Twitter" rel="nofollow" target="_blank"><img src="http://www.computereweb.net/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a href="http://www.addtoany.com/add_to/windows_live_spaces?linkurl=http%3A%2F%2Fwww.computereweb.net%2Fscript-phpmysql-come-conettersi-al-database%2F&amp;linkname=SCRIPT%20PHP%2FMYSQL%3A%20Come%20conettersi%20al%20database" title="Windows Live Spaces" rel="nofollow" target="_blank"><img src="http://www.computereweb.net/wp-content/plugins/add-to-any/icons/spaces.png" width="16" height="16" alt="Windows Live Spaces"/></a> <a href="http://www.addtoany.com/add_to/wordpress?linkurl=http%3A%2F%2Fwww.computereweb.net%2Fscript-phpmysql-come-conettersi-al-database%2F&amp;linkname=SCRIPT%20PHP%2FMYSQL%3A%20Come%20conettersi%20al%20database" title="WordPress" rel="nofollow" target="_blank"><img src="http://www.computereweb.net/wp-content/plugins/add-to-any/icons/wordpress.png" width="16" height="16" alt="WordPress"/></a> <a href="http://www.addtoany.com/add_to/yahoo_messenger?linkurl=http%3A%2F%2Fwww.computereweb.net%2Fscript-phpmysql-come-conettersi-al-database%2F&amp;linkname=SCRIPT%20PHP%2FMYSQL%3A%20Come%20conettersi%20al%20database" title="Yahoo Messenger" rel="nofollow" target="_blank"><img src="http://www.computereweb.net/wp-content/plugins/add-to-any/icons/yim.png" width="16" height="16" alt="Yahoo Messenger"/></a> <a href="http://www.addtoany.com/add_to/myspace?linkurl=http%3A%2F%2Fwww.computereweb.net%2Fscript-phpmysql-come-conettersi-al-database%2F&amp;linkname=SCRIPT%20PHP%2FMYSQL%3A%20Come%20conettersi%20al%20database" title="MySpace" rel="nofollow" target="_blank"><img src="http://www.computereweb.net/wp-content/plugins/add-to-any/icons/myspace.png" width="16" height="16" alt="MySpace"/></a> <a href="http://www.addtoany.com/add_to/oknotizie?linkurl=http%3A%2F%2Fwww.computereweb.net%2Fscript-phpmysql-come-conettersi-al-database%2F&amp;linkname=SCRIPT%20PHP%2FMYSQL%3A%20Come%20conettersi%20al%20database" title="Oknotizie" rel="nofollow" target="_blank"><img src="http://www.computereweb.net/wp-content/plugins/add-to-any/icons/oknotizie.png" width="16" height="16" alt="Oknotizie"/></a> <a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fwww.computereweb.net%2Fscript-phpmysql-come-conettersi-al-database%2F&amp;linkname=SCRIPT%20PHP%2FMYSQL%3A%20Come%20conettersi%20al%20database" title="Digg" rel="nofollow" target="_blank"><img src="http://www.computereweb.net/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fwww.computereweb.net%2Fscript-phpmysql-come-conettersi-al-database%2F&amp;linkname=SCRIPT%20PHP%2FMYSQL%3A%20Come%20conettersi%20al%20database" title="Delicious" rel="nofollow" target="_blank"><img src="http://www.computereweb.net/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/google_reader?linkurl=http%3A%2F%2Fwww.computereweb.net%2Fscript-phpmysql-come-conettersi-al-database%2F&amp;linkname=SCRIPT%20PHP%2FMYSQL%3A%20Come%20conettersi%20al%20database" title="Google Reader" rel="nofollow" target="_blank"><img src="http://www.computereweb.net/wp-content/plugins/add-to-any/icons/reader.png" width="16" height="16" alt="Google Reader"/></a> <a href="http://www.addtoany.com/add_to/hotmail?linkurl=http%3A%2F%2Fwww.computereweb.net%2Fscript-phpmysql-come-conettersi-al-database%2F&amp;linkname=SCRIPT%20PHP%2FMYSQL%3A%20Come%20conettersi%20al%20database" title="Hotmail" rel="nofollow" target="_blank"><img src="http://www.computereweb.net/wp-content/plugins/add-to-any/icons/live.png" width="16" height="16" alt="Hotmail"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.computereweb.net%2Fscript-phpmysql-come-conettersi-al-database%2F&amp;linkname=SCRIPT%20PHP%2FMYSQL%3A%20Come%20conettersi%20al%20database">Condividi</a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.computereweb.net/script-phpmysql-come-conettersi-al-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EBOOK, libro elettronico</title>
		<link>http://www.computereweb.net/ebook-libro-elettronico/</link>
		<comments>http://www.computereweb.net/ebook-libro-elettronico/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 14:27:02 +0000</pubDate>
		<dc:creator>computereweb.net</dc:creator>
				<category><![CDATA[GUIDE]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[ebook]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[wml]]></category>

		<guid isPermaLink="false">http://www.computereweb.net/?p=664</guid>
		<description><![CDATA[Un ebook è un libro elettronico o meglio un libro digitale, grazie alla conversione nel formato pdf gli ebook possono esser portati anche in smarthphone e altri dispositivi multimediali.
Vengono venduti o distribuiti gratuitamente on line da chi li realizza. Quasi sempre trattano argomenti di natura informatica.
Esistono in commercio, ma con scarsa diffusione anche gli ebook [...]]]></description>
			<content:encoded><![CDATA[<p>Un ebook è un libro elettronico o meglio un libro digitale, grazie alla conversione nel formato pdf gli ebook possono esser portati anche in smarthphone e altri dispositivi multimediali.<br />
Vengono venduti o distribuiti gratuitamente on line da chi li realizza. Quasi sempre trattano argomenti di natura informatica.<br />
Esistono in commercio, ma con scarsa diffusione anche gli ebook reader, apparecchi elettronici con uno piccolo schermo lcd che consentono la lettura degli ebook.</p>
<p>Ecco una serie di ebook gratuiti, realizzati da computereweb.net sui principali linguaggi di programmazione:</p>
<p><a href="http://www.computereweb.net/guida-html.pdf">GUIDA HTML </a></p>
<p><img class="aligncenter size-medium wp-image-666" title="ebook-html" src="http://www.computereweb.net/wp-content/uploads/2009/11/ebook-html-235x300.jpg" alt="ebook-html" width="235" height="300" /><br />
<a href="http://www.computereweb.net/moduli-html.pdf"> MODULI HTML </a><br />
<a href="http://www.computereweb.net/guida-css.pdf"> GUIDA CSS </a><br />
<a href="http://www.computereweb.net/guida-wml.pdf"> GUIDA WML </a><br />
<a href="http://www.computereweb.net/guida-mysql.pdf"> GUIDA MYSQL </a></p>
<p><a href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fwww.computereweb.net%2Febook-libro-elettronico%2F&amp;linkname=EBOOK%2C%20libro%20elettronico" title="Facebook" rel="nofollow" target="_blank"><img src="http://www.computereweb.net/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a> <a href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fwww.computereweb.net%2Febook-libro-elettronico%2F&amp;linkname=EBOOK%2C%20libro%20elettronico" title="Twitter" rel="nofollow" target="_blank"><img src="http://www.computereweb.net/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a href="http://www.addtoany.com/add_to/windows_live_spaces?linkurl=http%3A%2F%2Fwww.computereweb.net%2Febook-libro-elettronico%2F&amp;linkname=EBOOK%2C%20libro%20elettronico" title="Windows Live Spaces" rel="nofollow" target="_blank"><img src="http://www.computereweb.net/wp-content/plugins/add-to-any/icons/spaces.png" width="16" height="16" alt="Windows Live Spaces"/></a> <a href="http://www.addtoany.com/add_to/wordpress?linkurl=http%3A%2F%2Fwww.computereweb.net%2Febook-libro-elettronico%2F&amp;linkname=EBOOK%2C%20libro%20elettronico" title="WordPress" rel="nofollow" target="_blank"><img src="http://www.computereweb.net/wp-content/plugins/add-to-any/icons/wordpress.png" width="16" height="16" alt="WordPress"/></a> <a href="http://www.addtoany.com/add_to/yahoo_messenger?linkurl=http%3A%2F%2Fwww.computereweb.net%2Febook-libro-elettronico%2F&amp;linkname=EBOOK%2C%20libro%20elettronico" title="Yahoo Messenger" rel="nofollow" target="_blank"><img src="http://www.computereweb.net/wp-content/plugins/add-to-any/icons/yim.png" width="16" height="16" alt="Yahoo Messenger"/></a> <a href="http://www.addtoany.com/add_to/myspace?linkurl=http%3A%2F%2Fwww.computereweb.net%2Febook-libro-elettronico%2F&amp;linkname=EBOOK%2C%20libro%20elettronico" title="MySpace" rel="nofollow" target="_blank"><img src="http://www.computereweb.net/wp-content/plugins/add-to-any/icons/myspace.png" width="16" height="16" alt="MySpace"/></a> <a href="http://www.addtoany.com/add_to/oknotizie?linkurl=http%3A%2F%2Fwww.computereweb.net%2Febook-libro-elettronico%2F&amp;linkname=EBOOK%2C%20libro%20elettronico" title="Oknotizie" rel="nofollow" target="_blank"><img src="http://www.computereweb.net/wp-content/plugins/add-to-any/icons/oknotizie.png" width="16" height="16" alt="Oknotizie"/></a> <a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fwww.computereweb.net%2Febook-libro-elettronico%2F&amp;linkname=EBOOK%2C%20libro%20elettronico" title="Digg" rel="nofollow" target="_blank"><img src="http://www.computereweb.net/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fwww.computereweb.net%2Febook-libro-elettronico%2F&amp;linkname=EBOOK%2C%20libro%20elettronico" title="Delicious" rel="nofollow" target="_blank"><img src="http://www.computereweb.net/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/google_reader?linkurl=http%3A%2F%2Fwww.computereweb.net%2Febook-libro-elettronico%2F&amp;linkname=EBOOK%2C%20libro%20elettronico" title="Google Reader" rel="nofollow" target="_blank"><img src="http://www.computereweb.net/wp-content/plugins/add-to-any/icons/reader.png" width="16" height="16" alt="Google Reader"/></a> <a href="http://www.addtoany.com/add_to/hotmail?linkurl=http%3A%2F%2Fwww.computereweb.net%2Febook-libro-elettronico%2F&amp;linkname=EBOOK%2C%20libro%20elettronico" title="Hotmail" rel="nofollow" target="_blank"><img src="http://www.computereweb.net/wp-content/plugins/add-to-any/icons/live.png" width="16" height="16" alt="Hotmail"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.computereweb.net%2Febook-libro-elettronico%2F&amp;linkname=EBOOK%2C%20libro%20elettronico">Condividi</a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.computereweb.net/ebook-libro-elettronico/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NETSONS.ORG &#8211; HOSTING PHP/MYSQL GRATIS</title>
		<link>http://www.computereweb.net/netsonsorg-hosting-phpmysql-gratis/</link>
		<comments>http://www.computereweb.net/netsonsorg-hosting-phpmysql-gratis/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 13:47:43 +0000</pubDate>
		<dc:creator>computereweb.net</dc:creator>
				<category><![CDATA[Fai da Te]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[netsons]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.computereweb.net/?p=447</guid>
		<description><![CDATA[Cercate un servizio che vi offra supporto php e database mysql gratis? Tra i tanti siti che sulla rete offrono servizi di questo genere, in questo articolo esaminiamo l&#8217;offerta proposta da netsons.org, uno dei siti pionieri &#8211; insieme ad altervista.org &#8211; .
Inoltre netsons.org è l&#8217;unico sito che offre anche hosting vps e dedicato in cambio [...]]]></description>
			<content:encoded><![CDATA[<p>Cercate un servizio che vi offra supporto php e database mysql gratis? Tra i tanti siti che sulla rete offrono servizi di questo genere, in questo articolo esaminiamo l&#8217;offerta proposta da netsons.org, uno dei siti pionieri &#8211; insieme ad altervista.org &#8211; .<img class="alignleft size-medium wp-image-448" title="netsons" src="http://www.computereweb.net/wp-content/uploads/2009/09/netsons-300x225.jpg" alt="netsons" width="300" height="225" align="right"/><br />
Inoltre netsons.org è l&#8217;unico sito che offre anche hosting vps e dedicato in cambio di una sponsorizzazione (nota: il sito deve avere un determinato traffico per poter richiedere il servizio).</p>
<p>Ecco le caratteristiche del servizio:<br />
<em>nota: rispetto ad Altervista su Netsons, per usare il database mysql con query illimitate non devi acquistarli, ma in cambio sul tuo sito netsons comparirà un banner pubblicitario.<br />
In Grassetto sono evidenziati quei servizi che puoi trovare su netsons rispetto ad altervista, da rilevare il cpanel, i cgi e appunto il database con query illimitate. </em></p>
<p>- 1 sottodominio (tuonome.netsons.org)<br />
- <strong>Pannello di controllo Cpanel<br />
</strong>- Spazio web: 500 mb<br />
- 1 account ftp<br />
- 1 account e-mail<br />
- Supporto Php<br />
<strong>- Supporto Cgi</strong><br />
- Supporto htaccess<br />
<strong>- Fantastico Deluxe<br />
</strong>- Filemanager<br />
- Directory protection<br />
- <strong>Ban IP<br />
</strong>- Php Myadmin<br />
- Gestione index<br />
- Pagine Errori Personalizzate<br />
- Estensioni pagine personalizzate<br />
<strong>- Gestione e-mail e alias<br />
- Gestione Antispam<br />
- Backup settimanali</strong><br />
- Assistenza via ticket/e-mail<br />
<strong>- 1 database Mysql con query illimitate</strong></p>
<p>In solo 5 step avrete subito il vostro hosting gratuito:<br />
1) scegli il pacchetto: Hosting condiviso gratuito<br />
2) Opzioni<br />
3) inserisci il nome<br />
4) Conferma l&#8217;ordine<br />
5) Inserisci i dati personali<br />
Riceverete due e-mail, che confermano l&#8217;attivazione dell&#8217;account e vi danno il benvenuto.<br />
Adesso potete accedere al vostro account.<br />
Per accedere: http://www.netsons.com cliccate su area clienti e inserite l&#8217;indirizzo e-mail e la password con la quale vi siete registrati. Successivamente per accedere alle impostazioni del vostro sito, cliccate su pacchetti hosting&#8212;-&gt;visualizza dettagli &#8212;-&gt;accedi a cpanel</p>
<p>Buon divertimento</p>
<p><a href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fwww.computereweb.net%2Fnetsonsorg-hosting-phpmysql-gratis%2F&amp;linkname=NETSONS.ORG%20%26%238211%3B%20HOSTING%20PHP%2FMYSQL%20GRATIS" title="Facebook" rel="nofollow" target="_blank"><img src="http://www.computereweb.net/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a> <a href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fwww.computereweb.net%2Fnetsonsorg-hosting-phpmysql-gratis%2F&amp;linkname=NETSONS.ORG%20%26%238211%3B%20HOSTING%20PHP%2FMYSQL%20GRATIS" title="Twitter" rel="nofollow" target="_blank"><img src="http://www.computereweb.net/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a href="http://www.addtoany.com/add_to/windows_live_spaces?linkurl=http%3A%2F%2Fwww.computereweb.net%2Fnetsonsorg-hosting-phpmysql-gratis%2F&amp;linkname=NETSONS.ORG%20%26%238211%3B%20HOSTING%20PHP%2FMYSQL%20GRATIS" title="Windows Live Spaces" rel="nofollow" target="_blank"><img src="http://www.computereweb.net/wp-content/plugins/add-to-any/icons/spaces.png" width="16" height="16" alt="Windows Live Spaces"/></a> <a href="http://www.addtoany.com/add_to/wordpress?linkurl=http%3A%2F%2Fwww.computereweb.net%2Fnetsonsorg-hosting-phpmysql-gratis%2F&amp;linkname=NETSONS.ORG%20%26%238211%3B%20HOSTING%20PHP%2FMYSQL%20GRATIS" title="WordPress" rel="nofollow" target="_blank"><img src="http://www.computereweb.net/wp-content/plugins/add-to-any/icons/wordpress.png" width="16" height="16" alt="WordPress"/></a> <a href="http://www.addtoany.com/add_to/yahoo_messenger?linkurl=http%3A%2F%2Fwww.computereweb.net%2Fnetsonsorg-hosting-phpmysql-gratis%2F&amp;linkname=NETSONS.ORG%20%26%238211%3B%20HOSTING%20PHP%2FMYSQL%20GRATIS" title="Yahoo Messenger" rel="nofollow" target="_blank"><img src="http://www.computereweb.net/wp-content/plugins/add-to-any/icons/yim.png" width="16" height="16" alt="Yahoo Messenger"/></a> <a href="http://www.addtoany.com/add_to/myspace?linkurl=http%3A%2F%2Fwww.computereweb.net%2Fnetsonsorg-hosting-phpmysql-gratis%2F&amp;linkname=NETSONS.ORG%20%26%238211%3B%20HOSTING%20PHP%2FMYSQL%20GRATIS" title="MySpace" rel="nofollow" target="_blank"><img src="http://www.computereweb.net/wp-content/plugins/add-to-any/icons/myspace.png" width="16" height="16" alt="MySpace"/></a> <a href="http://www.addtoany.com/add_to/oknotizie?linkurl=http%3A%2F%2Fwww.computereweb.net%2Fnetsonsorg-hosting-phpmysql-gratis%2F&amp;linkname=NETSONS.ORG%20%26%238211%3B%20HOSTING%20PHP%2FMYSQL%20GRATIS" title="Oknotizie" rel="nofollow" target="_blank"><img src="http://www.computereweb.net/wp-content/plugins/add-to-any/icons/oknotizie.png" width="16" height="16" alt="Oknotizie"/></a> <a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fwww.computereweb.net%2Fnetsonsorg-hosting-phpmysql-gratis%2F&amp;linkname=NETSONS.ORG%20%26%238211%3B%20HOSTING%20PHP%2FMYSQL%20GRATIS" title="Digg" rel="nofollow" target="_blank"><img src="http://www.computereweb.net/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fwww.computereweb.net%2Fnetsonsorg-hosting-phpmysql-gratis%2F&amp;linkname=NETSONS.ORG%20%26%238211%3B%20HOSTING%20PHP%2FMYSQL%20GRATIS" title="Delicious" rel="nofollow" target="_blank"><img src="http://www.computereweb.net/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/google_reader?linkurl=http%3A%2F%2Fwww.computereweb.net%2Fnetsonsorg-hosting-phpmysql-gratis%2F&amp;linkname=NETSONS.ORG%20%26%238211%3B%20HOSTING%20PHP%2FMYSQL%20GRATIS" title="Google Reader" rel="nofollow" target="_blank"><img src="http://www.computereweb.net/wp-content/plugins/add-to-any/icons/reader.png" width="16" height="16" alt="Google Reader"/></a> <a href="http://www.addtoany.com/add_to/hotmail?linkurl=http%3A%2F%2Fwww.computereweb.net%2Fnetsonsorg-hosting-phpmysql-gratis%2F&amp;linkname=NETSONS.ORG%20%26%238211%3B%20HOSTING%20PHP%2FMYSQL%20GRATIS" title="Hotmail" rel="nofollow" target="_blank"><img src="http://www.computereweb.net/wp-content/plugins/add-to-any/icons/live.png" width="16" height="16" alt="Hotmail"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.computereweb.net%2Fnetsonsorg-hosting-phpmysql-gratis%2F&amp;linkname=NETSONS.ORG%20%26%238211%3B%20HOSTING%20PHP%2FMYSQL%20GRATIS">Condividi</a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.computereweb.net/netsonsorg-hosting-phpmysql-gratis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
