Re: How to create a new Table in prostgresql from a Webinterface - Mailing list pgsql-php

From Raoul Buzziol
Subject Re: How to create a new Table in prostgresql from a Webinterface
Date
Msg-id cfm559$6jg$1@news.hub.org
Whole thread Raw
In response to How to create a new Table in prostgresql from a Webinterface  (Michelle Konzack <linux4michelle@freenet.de>)
Responses Re: How to create a new Table in prostgresql from a Webinterface  (Michelle Konzack <linux4michelle@freenet.de>)
List 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
>


pgsql-php by date:

Previous
From: Steve Bergman
Date:
Subject: Re: How to create a new Table in prostgresql from a
Next
From: Michelle Konzack
Date:
Subject: Re: How to create a new Table in prostgresql from a Webinterface