Ho un programma che riceve i dati così:
<?php
$textfile = fopen("iscritti.html", "a");
$ragione_sociale = $_POST["ragione_sociale"];
nome = $_POST["nome"];
$ccognome = $_POST["cognome"];
$via = $_POST["via"];
$ccittà = $_POST["città"];
$ap = $_POST["cap"];
$tel = $_POST["tel"];
$cemail = $_POST["email"];
$web = $_POST["web"];
$datiform = $cragione_sociale . " - " . $cnome . " - " . $ccognome . " - " . $cvia . " - " . $ccittà . " - " . $cap . " - " . $ctel . " - " . $cemail . " - " . $cweb . "
";
fwrite($textfile, $datiform);
?>
dovrei modificare la parte $_POST["web"];?
ma come..