Parašė smart· 2010 Kov. 20 19:03:58
#14
Susikuri failą:
apdorojimas.php ir jame įrašai šitą kodą:
<?php
//$_POST['name'] corresponds to the textfield named "name"
if($_POST['shoutcast']) {
//DB Credentials
$host = "host";
$user = "name";
$pass = "pass";
//Connect to the database
$con = mysql_connect($host, $user, $pass) or die(mysql_error());
mysql_select_db("db") or die(mysql_error());
$name = mysql_real_escape_string($_POST['shoutcast']);
$sql = "UPDATE Persons SET shoutcast='{$shoutcast}' ";
mysql_query($sql) or die(mysql_error());
echo "UPDATED! Whooooohooo";
}
?>
Susikuri failą index.php ir įrašai šitą kodą:
<form action="apdorojimas.php" method="post">
<input type="text" name="shoutcast" />
<input type="submit" />
</form>
Redagavo smart· 2010 Kov. 20 19:03:15