Hi there.
Not an expert, but familiar with php and experienced with Joomla.
The shopping cart looks like a fantastic product so far, but I have a question regarding customisation.
Following a series of searches on our own database the customer selects three 'fields' leading to the following php script (or a similar "submit" form) to submit the choices - which amount to a product for purchase.
The equivalent to this might be a HOLIDAY in JUNE in FRANCE - one intangible purchase made up of three criteria arrived at by a series of previous searches and decisions.
My question is - can I - and how? - create a way to add the 'product' to the shopping cart from a php script feeding the criteria to the products page?
As you might notice, the 'value' for the fields in the form are automated from the results of a previous script leading to the page.
Thanks in advance.
flask
よろしくお願いします。
example of php code hoping to 'feed' the product page
<?php
$name=$_POST;
$dom=$_POST;
$top=$_POST;
?>
<html><body><form action="****WHEREVER THE SHOPPING CART IS.php*****" method="post">
<input name="name" type="text" readonly value='<?php echo $name;?>' /> @ <input name="dom" type="text" readonly value='<?php echo $dom;?>' /> .
<input name="top" type="text" readonly value='<?php echo $top;?>' /> <input type="submit" /></form></body></html>