Okay, I am a newbie, just learning. I have a machine running MSSQL, IIS 6.0, PHP 5.2 and I'm basically working on my first project.
Basically what I am trying to do is have a user select a pattern(.jpeg) by selecting a checkbox next to it.
After user hits submit, I want to feed the image file (Variable depending which check box is selected) to a predefined spot (cell in HTML table) on the new page.
I have been reading forums like mad and there seems to be a couple different ways to do this. Let me show you what I've found and perhaps you can point me in the right direction...
Perhaps I could use $_POST to place what ever image they selected into an HTML Table cell.
Maybe PHP isn't the best way to accomplish this, should I be pursuing some JAVA knowledge.
Store the images in a MSSQL database, and use the form as a MSSQL query to generate the output in the HTML Table.
I've heard of the GD extension, but it seemed like it was used mainly for editing images..
Thanks!