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?
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...
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...
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...
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/
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?
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. ? ?
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.
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(...
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...
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...
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.
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...
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...
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)...