Parašė Faitas.· 2011 Geg. 14 16:05:55
#4
Tai paimk padaryk failą image.php ir image.html ir ten rašyk
MySQL ir
PHP kodus. Tarkim:
image.html:
<html>
<head>
</head>
<body>
<form action='image.php' method='post'>
<input type='text' name='image_name' /> // Nuotraukos URL
<input type='submit' value='Pateikti' />
</form>
</body>
</html>
image.php:
<?php
/* Prisijunk prie duom.bazės */
$image = $_POST['image']; // URL
$query = 'INSERT INTO image (Name, URL) VALUES ('Image','$image')';
mysql_query($query) or die mysql_error();
mysql_close();
?>
Jei nori kokia ~21-21:30 val parašysiu kodą :)
Redagavo Faitas.· 2011 Geg. 14 16:05:28