Pagina Dinamica alle prime armi, come risolvere ?

FedeGrafix

Nuovo Utente
4 Lug 2008
5
0
0
Ciao a tutti.
Ho grossi problemi con il php, non lo conosco bene come linguaggio.. e per la prima volta mi sono deciso a fare una pagina dinamica.

Ho trovato un bel tutorial dove spiega tutto, ma non sono riuscito a finirlo perchè non era completo.. credo di aver fatto tutto giusto ma manca qualcosa.. difatti il tutto non funziona..
ma vi posto il codice , che sicuramente ho sbagliato una minchiata...

Io ho creato un nuovo database, l'ho impostato in dreamweaver le pass e tutto.. ho creato i recor con i campi che mi servivano..
Poi ho creato la pagina di invio dati al server e quella per vederli dal server.. ma non funge..:incazz:

DREAMWEAWER 8 MI HA CREATO IN AUTOMATICO QUESTE DUE PAGINE..
QUesta per l'ìinvio dei dati con i 3 campi di testo:

<?php require_once('connessione1.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;

$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);

switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}

mysql_select_db($database_connessione1, $connessione1);
$query_Recordset1 = "SELECT * FROM news";
$Recordset1 = mysql_query($query_Recordset1, $connessione1) or die(mysql_error());
$row_Recordset1 = mysql_fetch_assoc($Recordset1);
$totalRows_Recordset1 = mysql_num_rows($Recordset1);
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Documento senza titolo</title>
</head>

<body>
<form method="post" action="">
<label>
<input name="titolo" type="text" size="50" />
<br />
<br />
</label>
<label>
<input name="autore" type="text" size="50" />
</label>
<p>
<label>
<textarea name="news" cols="50"></textarea>
</label>
<label>
<input type="submit" name="Submit" value="Invia" />
</label>
</p>
</form>
<p>&nbsp;</p>
</body>
</html>
<?php
mysql_free_result($Recordset1);
?>

e questa per vederli: --------------------------------------------------------------------------------------------------------------------

<?php require_once('connessione1.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;

$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);

switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}

mysql_select_db($database_connessione1, $connessione1);
$query_Recordset1 = "SELECT * FROM address_book";
$Recordset1 = mysql_query($query_Recordset1, $connessione1) or die(mysql_error());
$row_Recordset1 = mysql_fetch_assoc($Recordset1);
$totalRows_Recordset1 = mysql_num_rows($Recordset1);

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Documento senza titolo</title>
</head>

<body>
<form id="form1" name="form1" method="post" action="">
<label>
<input name="textfield" type="text" value="<?php echo $row_Recordset2['titolo']; ?>" size="50" />
</label>
<p>
<label>
<input name="textfield2" type="text" value="<?php echo $row_Recordset2['autore']; ?>" size="50" />
</label>
</p>
<p>
<label>
<textarea name="textfield3" cols="50" rows="5"><?php echo $row_Recordset2['news']; ?></textarea>
</label>
</p>
</form>
</body>
</html>
<?php
mysql_free_result($Recordset1);

?>

QUalcuno può aiutarmi????:(:confused:
o per lo meno indirizzarmi verso la retta via ?

Grazie.
Ciauzz :)
 
Grazie per esserti interessato al mio problem..:love:

nessuno, semplicemente , non invia i dati , e quando la pagina per leggerli non li vede...

Ho seguito tutte le procedure per fare le tabelle con phpmyadmin e tutt e le procedure per connettere dreamwere, fare il file di connessione al database, e ho cambiato da post a get , nel form nella pagina per leggere i dati,, ma niente, nessun errore, nessun risultato..

Non funge nà cippa..
Non conosci qualche tutorial che mi possa far fare del testo dinamico ? con una pagina per aggirnorlo ?
 

Discussioni simili