Hi Guys,

I am doing online Gift website by using os commerce..
I need to add Delivery time with Shipping Address/Delivery Address..

What are the changes i need to do and where?

Can u guys plz give me some suggestions regarding this.

you will need to add a text box on the page, then add the variable to your processing page, and add it to the sql statement.

eg,

add this line to the form page:


<input type="text" name="delTime" value="">


Then add this line to the processing page, providing that it is php based processing:

$delTime = $_REQUEST;


Then add this to the sql statement:

`delTime` put that in the "column name" part of the sql, then add the following line in the same position in the 'values' part:
'$delTime'


That should do it. Make sure that you have the column name "delTime" in your sql database too or else it wont work.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.