Hi Guys,
In the product.php page in the admin backend, I need to create two get methods for Product Name and Description that has to be read in from the URL. Currently the url looks like...
admin/product.php?x=41&y=10&product_type=1&cPath=2&action=new_product
I will simply change to this...
admin/product.php?x=41&y=10&product_type=1&cPath=2&action=new_product&productName=what ever&description=whatever
So on products.php I will have two get methods to get the values
$product_name = $_GET['product_name'];
$description = $_GET['description'];
I then need to populate the product name and description textfields with these values, but I'm not sure where I should be putting the.. echo $product_name; code?.. to print out the value into the textfields.



