|
Posted by Pertti Kosunen on 10/03/36 11:26
sime wrote:
> mysql_select_db($dbname, $connection);
mysql_select_db($dbname, $connection)
or die ( 'Unable to select database.' );
> $results = mysql_query ($query, $connection);
$results = mysql_query ($query, $connection)
or die ( 'Unable to execute query.' );
> $row = (mysql_fetch_assoc($result));
> $varblobthing = $row['blobthing']; //put the blob in a variable
$varblobthing = $row['blobthing']; //put the blob in a variable
mysql_free_result($result);
....
Navigation:
[Reply to this message]
|