Hi, I want users on my website to upload their company logo (if they have one) while filling out my form. Right now i only have one row designated for the company logo called 'images' with the type set to BLOB. Is this adequate for both uploading images and displaying them on my website?
Another thing, I used dreamweaver's 'insert record' server behaviour to generate a script that causes my form to insert data into my database table. One line that I'm curious about is the following:
GetSQLValueString($_POST['upload'], "text"),
Do I need to change 'text' to something other then 'text'? I tried 'image' but that caused an error. Note that this line is giving me an error so something has to be done to it and it's obviously for the upload element in my form.