> // First run ONLY - need to create table by uncommenting this
> // Or with silent @ we can let it fail every sunsequent time ;-)
>
> $q = <<<CREATE
> create table pix (
> pid int primary key not null auto_increment,
> title text,
> imgdata longblob)
> CREATE;
> @mysql_query($q);
>