Re: HTTP POST
Lucy4 wrote:
> The server supports PHP, but I'm afraid it's PHP 4 although I do have access to a server with PHP 5. Also it has a MySQL database
Either is fine, and having MySQL is good too. Dreamweaver should be able
to do this with its built in Server Behaviours.
I don't do PHP or MySQL myself, but the flow would be:
Receive form field
Insert into database
The database table should use a timestamp field to you know when
the order arrived. You will also want an auto ID field as your primary key.
You will then need to make a page that lists the orders, for this you
create the recordset, drag the timestamp onto the page and use a repeat
region, make the timestamp a link, using the ID field as a paremeter.
The page you just linked to will have a recordset that is filtered by
the ID that was passed in the Querystring. All this page does is display
the one column from the database that was passed from the IVR system.
You then print the page.
This should get you going in the right direction.
Steve
|