In costruzione http://pfmarro.altervista.org

L'account è stato attivato con successo, affinchè il tuo sito sia visibile dovrai sostituire questa pagina con la tua homepage (la pagina iniziale del tuo sito).

Ricorda che la tua homepage deve obbligatoriamente chiamarsi: index.html, index.htm oppure index.php




Login
login ---> http://pfmarrodev.altervista.org/login/arrivo.html
Database
Database ---> http://pfmarrodev.altervista.org/database/index.html



PHP - Tutorial PHP italiano (Guida rapida) --> fonte: http://www.php.net/manual/it/getting-started.php
http://php.net/manual/it/tutorial.firstpage.php



PFM PRIMO ESEMPIO PHP

2010 pfm_myfirst_script.php

24 nov 2010 --> http://pfmarrodev.altervista.org/pfm_test_mysql.php


php e html

 Italia

codice php per mySQL DOPO AVERLO ATTIVATO

IL DATABASE il nome deve iniziare per "my_"

<?
$username = "pippo";
$password = "******";
$host = "localhost";
$database = "my_pippo":

$db = mysql_connect($host, $username, $password) or die("Errore durante la connessione al database");
mysql_select_db($database, $db) or die("Errore durante la selezione del database");
?>