mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Start of talian Translation just a test sorry if there is any error
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@118688 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
dd0739a65a
commit
eb6eec9712
1 changed files with 22 additions and 22 deletions
|
@ -1,35 +1,35 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.11 $ -->
|
||||
<!-- $Revision: 1.12 $ -->
|
||||
<chapter id="tutorial">
|
||||
<title>A simple tutorial</title>
|
||||
<title>Un semplice tutorial</title>
|
||||
|
||||
<para>
|
||||
Here we would like to show the very basics of PHP in a short simple
|
||||
tutorial. This text only deals with dynamic webpage creation with
|
||||
PHP, though PHP is not only capable of creating webpages. See
|
||||
the section titled <link linkend="intro-whatcando">What can PHP
|
||||
do</link> for more information.
|
||||
Qui vorremmo mostrare i principi fondamentali di PHP in una lezione semplice
|
||||
e breve. Questo testo si occupa soltanto della creazione dinamica di pagine
|
||||
con PHP, benchè PHP sia non soltanto capace di generare pagine web. Vedi
|
||||
la sezione <link linkend="intro-whatcando">Cosa può fare PHP?</link>
|
||||
per maggiori informazioni.
|
||||
</para>
|
||||
<para>
|
||||
PHP-enabled web pages are treated just like regular HTML pages and
|
||||
you can create and edit them the same way you normally create
|
||||
regular HTML pages.
|
||||
Le pagine PHP vengono gestite nella stessa forma delle pagine HTML ed
|
||||
è possibile crearle ed editarle con gli stessi metodi usati per
|
||||
creare pagine HTML.
|
||||
</para>
|
||||
|
||||
<sect1 id="tutorial.requirements">
|
||||
<title>What do I need?</title>
|
||||
<title>Di cosa ho bisogno?</title>
|
||||
<para>
|
||||
In this tutorial we assume that your server has support for PHP
|
||||
activated and that all files ending in <filename>.php</filename>
|
||||
are handled by PHP. On most servers this is the default extension
|
||||
for PHP files, but ask your server administrator to be sure. If
|
||||
your server supports PHP then you don't need to do anything. Just
|
||||
create your <filename>.php</filename> files and put them in your
|
||||
web directory and the server will magically parse them for you.
|
||||
There is no need to compile anything nor do you need to install
|
||||
any extra tools. Think of these PHP-enabled files as simple HTML
|
||||
files with a whole new family of magical tags that let you do all
|
||||
sorts of things.
|
||||
In questo tutorial presuponiamo che il vostro server supporta PHP e che tutti
|
||||
i file con estensione <filename>.php</filename> vengono gestiti da PHP.
|
||||
Nei server quest'è l'estensione di default per i file PHP, ma chiedete
|
||||
al vostro amministratore di sistema per maggiore sicurezza. Se il vostro server
|
||||
supporta PHP non è necessario fare null'altro. Solo create i vostri file
|
||||
<filename>.php</filename> e posizionateli nella vostra directory web, il server
|
||||
magicamente le analizzerà per voi.
|
||||
Non è necessario compilare nulla neanche installare nessun
|
||||
tool extra. Pensate ai file PHP come una semplice pagina HTML con una enorme
|
||||
e nuova famiglia di tags magici ceh vi permetterà di fare di tutto ed anche
|
||||
di più.
|
||||
</para>
|
||||
<para>
|
||||
Let's say you want to save precious bandwidth and develop locally.
|
||||
|
|
Loading…
Reference in a new issue