Confirm Page Variables? - Page 2

User 69715 Photo


Registered User
30 posts

Sorry Eric but I really don't understand what you're telling me. :(

I've manually written variables into the code above (at various points) and none of them are being passed to the confirmation page.

I need the person using the form to see the options they've selected before submitting it. It sees like such a simple request.

Perch
User 187934 Photo


Senior Advisor
20,196 posts

There's no way to see the variables for you hit submit because hitting submit creates the variables. Why can't the user just look at what they entered in the form? You could do this with Jquery.:cool:
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.

This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
User 464893 Photo


Ambassador
1,611 posts

I posted this before, It gets the variables from a saved csv file. I use the saved result csv. file for all my data manipulation. If I was to save data I would reorder it as I wanted then put it back in a database. Actually I use a flat file system that works using csv files. check out
http://www.pjj.pl/pjjtextbase/ absolutely brilliant system, Created by a much respected Polish programer, Unless you are taking on Google this database system is all you want and you can upload it to a clients host and it hits the ground running. I used it to create a classified system in php as a way of learning the language. Bailed out at the Admin system creation, Lost interest plus there are better systems out there.

<?php
error_reporting(E_ALL & ~E_NOTICE);
[quote]$file_handle = fopen("Displayform/storage/csv/results.csv", "r");// the address where the file is located
while (!feof($file_handle)){
$item = fgetcsv($file_handle, 1024);
if($item=="")Break;// make sure the last entry is used
$lastitem=$item;
}
fclose($file_handle);
$data1 = $lastitem[0];
$data2= $lastitem[1];
?>



Write out a map of exactly what you want and break that in achievable steps then work on each step not worrying about the others.
The Guy from OZ


User 187934 Photo


Senior Advisor
20,196 posts

I bet you could also grab them if you coded an iframe into the confirmation page. I might test that.;)
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.

This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com

Have something to add? We’d love to hear it!
You must have an account to participate. Please Sign In Here, then join the conversation.