Re: How to create a new Table in prostgresql from a Webinterface

From: Raoul Buzziol <raoulus(at)libero(dot)it>
To: pgsql-php(at)postgresql(dot)org
Subject: Re: How to create a new Table in prostgresql from a Webinterface
Date: 2004-08-14 22:55:34
Message-ID: cfm559$6jg$1@news.hub.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-php

Michelle Konzack wrote:

> Hello,
>
> Never I have done this before (no need) but now I nee to create a
> new table with some colums from a Webinterface and do not know how
> to do that.

You have to execute a query:

pg_query(connection, "CREATE TABLE tablename (id serial, val int4...);");

>
> Please can anyone point me into the right direction ?
>
> Thanks, Greetings
> and nice Weekend
> Michelle
>

In response to

Responses

Browse pgsql-php by date

  From Date Subject
Next Message Steve Bergman 2004-08-15 17:28:50 Re: How to create a new Table in prostgresql from a
Previous Message Michelle Konzack 2004-08-14 15:15:30 How to create a new Table in prostgresql from a Webinterface