Search results

  1. B

    Image checkbox

    well if I do conditionals as you have shown in the example for all 200 images/checkboxes then I will have to cover all possibilities which are thousands. In your example as we were dealing with 2 images/checkboxes the possibilities are 4 (only box 1 checked, only box 2 checked, both checked or...
  2. B

    Image checkbox

    Nice... Just thinking that the conditionals might not be practical as I have almost 200 images/checkboxes. Any other method we can apply for the same effect? thanks majorly .. Oh also I wanted to ask how to make it so that if no image/checkbox is submitted on the initial page then the use...
  3. B

    Change php settings

    Thanks Christopher . . I used this exact code and it still allowed a file bigger than the permitted limit to be uploaded with the following message: So it is displaying the error message but also uploading it . . I am really stuck with this one and have no idea why it won't restrict the file...
  4. B

    Change php settings

    Just thinking that if the php settings for the max_upload_size are too big this is no reason that my script isn't restricting the upload file size for users. After all I want to upload files that are bigger than I want to allow users to upload so the script is imperative - unfortunately it isn't...
  5. B

    Change php settings

    Yes but I only want users to be able to upload 200kb or so otherwise my server will be too full - the max_upload_size is currently set to 35M. So how can I change it?
  6. B

    Change php settings

    Sorry if this isn't the right place to post.. I am trying to change my php settings as I believe the max_file upload is set too high and is not limiting user uploads as I have specified in my php script. However I only know how to view the settings not change them . . anyone know?
  7. B

    DW error message

    I don't know if anyone knows what is going on with my database but when I try to insert a record in dreamweaver so that user entries will be entered into my database I get the following error message: I can't say I understand why or what I should do as my database is connected to mySQL...
  8. B

    Image checkbox

    So if a box isn't checked it doesn't say e.g. "box 7: not ticked" but just doesn't mention it . . For example if the email message reads: then I know that they are the boxes that have been checked rather than having to sift through the message to determine which have been checked (as...
  9. B

    Unique php page

    wow that is pretty impressive... So do I need to set up a mySQL database? To explain a bit further for my project - there will be 4 pages submitting different information on each, also it is not a registry so users don't require passwords - only to be sent to unique pages so that they cannot...
  10. B

    Unique php page

    the URL I posted wasn't supposed to be a link but just an example of a unique URL and not a real one.. freecrm or anyone that knows - can you tell me how to create $session variables so that users cannot skip stages in a sign up process// Ever grateful~
  11. B

    Image checkbox

    Yeh thanks - that 'box 1' confusion was a typo. But to clear up below is what I used on the results page. The couple of lines I changed were on the previous page and all is now working so a massive thanks to those involved. Last request is just to get the ticked boxes mailed to me - I'm not...
  12. B

    Unique php page

    Can anyone tell me how to make a unique php page so that when someone submits information they are directed to a unique page and therefore cannot skip that by entering the URL into the URL address bar/ like this: http://forums.x10hosting.com/search.php?searchid=619273
  13. B

    Image checkbox

    great - I have the images staying as they were on the results page (yes there are 2 pages involved here).. which is awesome. . I had to change this <img name="imagecheckboxes" src="<? echo "$img_box1"; ?>" onclick="toggleChkBox(this)" title="box1" /> <img name="imagecheckboxes" src="<? echo...
  14. B

    Image checkbox

    Yes in the results page to exactly mimic how the last page appeared when it was submitted. Yet to still have the email sending the data (not image) of the selections.
  15. B

    Image checkbox

    thanks Salvatos... this is a nice idea but doesn't seem to send the images as they were submitted.. Also what I meant to say is that I want the images to be as they were on the next page and only the title of the selected images mailed to me (the mailing has been achieved). . Would be...
  16. B

    Image checkbox

    That's very useful scopey. . .thanks a lot. I just need to mail it to myself now and if possible remove the ones that haven't been checked. Also wanted to ask you if it was possible to make the images on the results page the same as they were as they were submitted on the previous but I don't...
  17. B

    Image checkbox

    scopey this code looks good but I'm having a few problems with my php - I changed all the $HTTP_POST_VARS to $_POST[] but it doesn't want to work for me and I didn't know quite in what place to enter the $_POST[checkbox1]. ...code looks awesome though/.
  18. B

    Image checkbox

    seems good and from there ... how do I get this information posted to me on the next page as I seem to be having a little trouble with the php coding that I have used on previous forms. It is below. <script language="php"> $email = $HTTP_POST_VARS[email]; $mailto = "my.email@myhost.com"...
  19. B

    Do I have Cron?

    Does that mean I have to use mySQL? I have had some problems connecting to that.
  20. B

    Do I have Cron?

    thanks. . . How can I delay an automated email with this feature so that it sends an email to users 3 days after they request? . . regards
Top