Search results

  1. B

    secret forward

    wait/sleep commands - how do I do that? will it do the job?
  2. B

    secret forward

    Can we do that because I've messed about with that a little and it didn't seem to like it, e.g. even putting two identical doesn't work: mail($to, $subject, $message, $headers); mail($to, $subject, $message, $headers); how do you suggest we do it?
  3. B

    secret forward

    I think you understand what I mean with the names so -here's the code: <?php // Create local PHP variables from the info the user gave in the Flash form -disabled message field $toName = $_POST['toName']; $toEmail = $_POST['toEmail']; $fromEmail = $_POST['fromEmail']; // Strip...
  4. B

    secret forward

    Re: separate greetings Well I've resolved that issue - I am now onto something else. . . I have a name field whereby users enter the name of the friend they wish to refer and they are greeted with - " Hi $toName, blah blah...". However if the user enters multiple email addresses (separating...
  5. B

    secret forward

    I have a section where users can send a link to a friend but I don't know how to forward that info onto myself so that they cannot see it (using BCC I believe). This is part of what I have (below) but of course it doesn't do what I want. Can someone feed me the missing link or advise me on what...
  6. B

    flash proportions

    I was hoping there was a z-index feature that would allow a simpler way of doing this or is that extremely wishful thinking? How can I script the last suggestion which is the all important part for pulling something above the flash file. regards/
  7. B

    sizing scroll box

    I've used this scroll feature http://www.jsmadeeasy.com/javascript...x/template.htm but in some browsers such as safari the box is considerably bigger. Does anyone out there know how I can proportion it to be the same in all?
  8. B

    flash proportions

    great stuff. Those suggestions are very helpful to me - thanks!! on a side note: does anyone know how to place a flash file below something else, e.g. an image. ? ?
  9. B

    flash proportions

    thanks for the sharp reply.. well imagine 3 columns - the outer ones have images in and are already proportioned but the centre one has a flash file which I also want to be proportioned so the whole page is proportional.
  10. B

    flash proportions

    I'm trying to make a flash file in my page proportional - how can I do it? What in this code could I change to proportion the file? I've tried a variety of combinations without success. Thanks to anyone. <script type="text/javascript"> AC_FL_RunContent(...
  11. B

    transferring dynamic data

    yes I'm now doing that and getting: Not sure why. What else am I doing wrong?? Edit: I've put up this test page to show in greater detail what I am trying to achieve: Test Page (currently not available in IE for some idiotic reason) I want the image ID to be sent to the 2nd...
  12. B

    transferring dynamic data

    ok added and yes i should have seen it again. I think sometimes that maybe you are testing me.. .. Am i right in thinking that by going straight to the viewresults.php page I should be able to see the results because there is only "ImageTimes Selected" displayed and no data - it seems...
  13. B

    transferring dynamic data

    Again thanks - I guess I should have spotted that.. unfortunately that isn't quite where it ends happily. . .another parse error came back: Line 16: foreach ($results as $key => $value) Might be obvious but not to me.
  14. B

    Paypal

    thanks maxyes - very helpful
  15. B

    transferring dynamic data

    sounds unreal! Just getting a parse error at the moment: Line 11 is this: require_once("choices.inc") or die("file not found!" Any data saved?");
  16. B

    transferring dynamic data

    I'm looking to send data to another region of the page. To be more exact I would like that when an image is clicked the id of that image will be sent to a separate region of the same screen and later (with other information) will be sent on to me so that I can identify which image the user...
  17. B

    flash on flash

    does that mean that thye can run at different speeds? If so how do I go about that?
  18. B

    IE flash flunk

    I've got a site which I want solely based on one page all content is activated through regular images which prompt a flash animation. Looks ok in firefox and safari but IE does not load it - I am aware of the problems with active content & IE but the flash file is quite bulky (2.4MB) so...
  19. B

    activating flash outside of flash

    thanks to jump to certain frames I used this: function Jumptoframe50() { var flashMovie=getFlashMovieObject("moviename"); var currentFrame=flashMovie.TGetProperty("/", 1); var Frame50=parseInt(currentFrame); if (Frame50>=0) Frame2=50; flashMovie.GotoFrame(Frame50)...
  20. B

    paypal payment form

    interested in this myself but perhaps this will help: https://www.paypal.com/uk/cgi-bin/webscr?cmd=_wp-standard-integration
Top