Flash & PHP

I have created a database that contains mp3 numbered audio
such as 411.mp3, 412.mp3. However, in Flash, I cannot play the mp3.
I am using Flash Pro 2004.
My mp3 audios are located in this folder.
/media/aduioSermons/audios
My flash MediaPlayBack that I used from Flash MX 2004 Pro, in
the parameters tab I had selected mp3 radio button and then in the
URL this is what has been typed.
/media/aduioSermons/audios/<?php echo
$row_rsAudioSermon['listen']; ?>
The <?php echo $row_rsAudioSermon['listen']; ?> is my
database in MySQL that stores the name "411.mp3".
So my plan is to embed one flash file called
"audioSermonPreview.swf" and inside that SWF has that URL so when
it is called up in a details page it plays that clip.
Is this possible to do or there is no way to link them?
Thank you for all who help.
AdonaiEchad
This is my PHP Page

Hi all_begin,
here you have to create an another loadvar (which will be the
return the data in order to you request ) object like to have made
"var sendMail_lv:LoadVars = new LoadVars();". The newer may be "var
resultMail_lv:LoadVars = new LoadVars();" and then you have to put
this "resultMail_lv" in "sendAndLoad" method of flash like :
sendMAil_lv.sendAndLoad(
http://PATHtoMYserver/sendMail.php",
resultMail_lv "POST");.
Now, you have to write bit of code in your send_btn.onRelease
function to load data that you want to get from your php file.
resultMail_lv.onLoad = function(success:Boolean) {
if (success) {
result_ta.text = resultMail_lv.welcomeMessage;
} else {
result_ta.text = "Error connecting to server.";
here " result_ta " will be the text area in which you can
show the data which is cominig from your php side.

Similar Messages

  • Radio Buttons for Flash PHP email.

    Hi.
    I need to add a sign-up form for services to a flash AS2 web site.
    I found a very simple example of a Flash/ PHP email form at Kirupa.
    It works fine, but I need to add some radio buttons.
    My web site will offer various services.
    Ideally I would like to be able for viewers to sign up for a service by clicking the appropriate right radio buttons
    F.ex;
    •   Service 1
    •   Service 2
    •   Service 3
    •   Service 4
    The email should reflect the choices made by listing the text on the selected services (radio buttons).
    Please download the FLA and the PHP file (at the bottom of the tutorial) here:
    http://www.kirupa.com/developer/actionscript/flash_php_email.htm
    I have uploaded a working version here:
    http://gggraphic.com/flash_mail/simple_flash_mail.php
    How do I add and script the radio buttons with both AS and the PHP to make it happen?
    Thank you on beforehand for your help
    ggaarde

    Hi Again
    Maybe check buttons would be a more natural option for this. You should be able to select more than one service.
    Thanks
    ggaarde

  • Flash & PHP issue

    I have a PHP website that had a jpg banner image in the middle of the page. On the left side of the page there is a vertical menu which cascades to the right with each submenu. Then the submenu cascades, is overlays the jpg image in the table cell next to the menu. The issue that I'm trying to resolve is that when I replaced the jpg image file with a flash file and the submenu cascades to the right, the cascading menus are displayed behind the flash image. Is there a way to control this so that the submenus can be seen? I have included the html used to display the flash image.
    <!-- -------------------- -->
    <!-- Flash Banner  -->
    <!-- -------------------- -->
    <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="475" height="575" id="gi-center-ad" align="middle">
    <param name="allowScriptAccess" value="sameDomain" />
    <param name="movie" value="../flash/gi-center-ad.swf" />
    <param name="quality" value="high" />
    <param name="bgcolor" value="#ffffff" />
    <embed src="../flash/gi-center-ad.swf" quality="high" bgcolor="#ffffff" width="475" height="575" name="gi-center-ad" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
    </object>
    <!-- End of Flash Banner //-->
    Thanks,
    RB

    Try inserting a wmode parameter in both the object and embed tags abd see uf that helps ...
    For the oject tag:  <param name="wmode" value="transparent" />
    For the embed tag: wmode="transparent"

  • Flash PHP JPG/PNG Email

    Hi,
    I would like to take a "screenshot" of the stage within flash and send it as an image by email.
    I have tried AMFPHP and the method described here - http://www.bytearray.org/?p=90#respond
    This is saving a jpg of a movie on the server, but no email function.
    I know how to setup a very simple php email file but without attachement.
    So my problem is I have no idea how to "connect" all those parts together and make it so that when you click the button in flash it'll send the jpg by email directly.
    Any help would be appreciated !
    Thanks

    John, that is a very interesting application you found there.  I tried it out and downloaded the source but haven't looked through it yet.
    If you notice, once you've created your snapshot and saved it to the server, you can view it by clicking Snapshot available here.  That gives you the full URL of the image.  One thing you could do is pass that URL in a variable to your PHP page that sends the email, and include the reference as an image source in the body of the email.  That would display the image in the HTML email but would not be an attachment.  But as mentioned above, I'm sure there's a way to grab the image using the URL in the same way, just not sure how  at this point.

  • Send data from PHP - Flash - PHP

    Hi,
    I have some issue with passing data from Flash to PHP and
    reciprocally.
    when i browse the FlashDataExchange.php file (which includes
    the flash)
    it does not redirect automatically to the 2nd PHP page...
    And i do not get any data on the 2nd PHP page....
    i'm lost, what do i do wrong ?
    thanks for your help.
    Alain
    i have the following AS3 code :
    import flash.external.*;
    myButton.addEventListener("click", sendData2PHP);
    //var link2:String = "
    http://192.160.1.2/test/flashdataexchange.php";
    var link:String = "
    http://192.160.1.2/test/DataExchangeResult.php";
    var request:URLRequest = new URLRequest (link);
    var loader:URLLoader = new URLLoader (request);
    var variables:URLVariables = new URLVariables();
    request.method = URLRequestMethod.POST;
    request.data = variables;
    var curUrl:String = String( ExternalInterface.call("
    function(){ return
    document.location.href.toString();}"));
    function sendData2PHP(evt:Event):void
    variables.lg = myField1.text;
    variables.address = myField2.text;
    variables.field2 = curUrl;
    loader.addEventListener(Event.COMPLETE, onComplete);
    loader.addEventListener(IOErrorEvent.IO_ERROR, sendIOError
    loader.dataFormat = URLLoaderDataFormat.TEXT;
    loader.load(request);
    function onComplete (event:Event):void
    Text1.text = event.target.data;
    My DataExchangeResult.php file looks like that:
    <html>
    <head>
    </head>
    <body>
    <?php
    $lg=$_POST['lg'];
    $ad=$_POST['address'];
    $f2=$_POST['field2'];
    echo "test : ".$ad ;
    ?>
    </body>
    </html>
    and my FlashDataExchange.php file is the following one:
    <html>
    <head>
    </head>
    <body>
    <?php
    echo "-- POST -- <br>";
    echo "Lg : ".$_POST['l']."<br>";
    echo "Address : ".$_POST['address']."<br>";
    echo "f2 : ".$_POST['f2']."<br>";
    echo "<br>-- GET -- <br>";
    echo "Lg : ".$_GET['l']."<br>";
    echo "Address : ".$_GET['address']."<br>";
    echo "f2 : ".$_GET['f2']."<br>";
    ?>
    <object
    classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
    codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0"
    width="400" height="200" id="FlashdataExchange"
    align="middle">
    <param name="allowScriptAccess" value="sameDomain" />
    <param name="allowFullScreen" value="false" />
    <param name="movie" value="FlashdataExchange.swf"
    /><param
    name="quality" value="high" /><param name="bgcolor"
    value="#006600" />
    <embed src="FlashdataExchange.swf" quality="high"
    bgcolor="#006600"
    width="400" height="200" name="FlashdataExchange"
    align="middle"
    allowScriptAccess="sameDomain" allowFullScreen="false"
    type="application/x-shockwave-flash"
    pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    />
    </object>
    </body>
    </html>

    &gt; it does not redirect automatically to the 2nd PHP
    page...
    URLLoader does not ever change the page location, it only
    loads data from the URL. To change pages, you need to use
    navigateToURL(), which can also send POST/GET variables along with
    the URL request.
    &gt; And i do not get any data on the 2nd PHP page....
    A quick look at your code looks correct to me: you are
    listening for the complete event, dataFormat is text, and PHP is
    echoing. However, check for httpStatus event and see if it gives
    you anything interesting... I can't get to the link myself, aka
    404. Also check the securityError event.

  • Flash PHP MySQL issue

    can someone please tell me what i'm doing wrong:
    (Actionscript)
    var db_out:URLVariables = new URLVariables();
    db_out.from = "property";
    db_out.where = "`state`='OR'";
    var db_req:URLRequest = new URLRequest("php/search.php");
    db_req.data = db_out;
    db_req.method = URLRequestMethod.POST;
    ldr_db.load(db_req);
    (PHP)
    $select='`id`';
    $from=$_POST['from'];
    $where=$_POST['where'];
    $order='`type`';
    $result=mysql_query('SELECT '.$select.' FROM `'.$from.'` WHERE '.$where.' ORDER BY '.$order);
    this returns no results.
    this issue is within the db_out.where variable.
    other searches where db_out.where is a Number (IE: where = "`status`=1") work fine.
    so how do i pass a String query from Flash to MySQL?
    if it were a single variable sent to PHP, i would wrap it in single quotes (IE: ''SELECT '.$select.' FROM `'.$from.'` WHERE `state`='."'".$var."'".' ORDER BY '.$order), but how do i properly send a WHERE statement from Flash to MySQL involving a String??
    much appreciated,

    i figured it out. no idea why this is an issue, but it seems to be.
    if Flash passes a string to PHP to be used in a MySQL query, and that string contains single quotes (IE `city`='Portland'), the query will return 0 results, even if its WHERE had an OR conditional in it not using single quotes (IE `status`=1).
    so here's the fix:
    use some unused symbol in place of the single quotes (IE ^) in Flash, and have PHP use str_replace to swap them for single quotes.
    i dont know why PHP has to be the one to implement the single quotes, but it seems to
    IE:
    $where = str_replace('^', "'", $_POST['where']);
    i hope this saves someone the hours i spent trying to figure this one out!!

  • Flash/PHP form help

    I have posted this before a while back, but never figured it
    out. I think I am really close.
    When my form gets clicked, the following gets triggered:
    var result_lv:LoadVars = new LoadVars();
    result_lv.onLoad = function(success:Boolean) {
    if (success) {
    this.tf_showAlertMsg.text = "Thank you for sending us an
    email";
    } else {
    this.tf_showAlertMsg.text = "Email did not go through";
    var send_lv:LoadVars = new LoadVars();
    send_lv.Name = tName;
    send_lv.FromEmail = tEmail;
    send_lv.Subject = tSubject;
    send_lv.Comments = tMsg;
    send_lv.Newsletter = tCheckBox;
    send_lv.status = "";
    send_lv.sendAndLoad("php/sendContact.php",result_lv,"POST");
    this.showAlertMsg("Sending...");
    Everything gets sent and all is working great. The only thing
    that does not work is the ifStatement in the result_lv never gets
    triggered. I think that this has to do with my php. I don't really
    speak php and so I am having issues with it.
    In the php I have two echos, which I was told I could use
    with the result_lv. I think that my result_lv, does either not know
    what it is listening to, or that my echos are wrong. The echos in
    the php look like this.
    //if($debug)
    echo "mes1 $ToEmailType $ToEmail $Subject $Message From:
    $Name $FromEmail\n ";
    and
    echo "&Status=Your quote request has been sent.";
    What do I have to do, so Flash receives the echo and I can
    tell the user that the info has been received.
    Thanks a lot for help with this!

    OK, great, I am getting closer! Thank you so much.
    I now get the "Email did not go through" case. The email gets
    sent though, so I am not sure why that is happening. I am assuming,
    where you say //find out if it's working first is working because
    the if statement gets triggered.
    How can I proceed from here?
    Thank you so much!

  • Seach mySQL using flash + PHP

    So... I have done my studying... and I can pefectly fine
    print data into flash from mySQL.
    The problem is, is that I want to create a search in flash,
    that sends a variable to php to use in the mySQL query. WITHOUT
    opening a new page, and staying in flash.
    I can use:
    on (release) {
    getURL("get_users.php", _blank, "POST");
    and it will post my results of my input box into the php file
    and print what I tell it to
    but when I use:
    on (release) {
    receiver.onLoad = function(ok) {
    if (ok) {
    myGrid.removeAllColumns();
    myGrid.removeAll();
    for (var i = 1; i<=receiver.total; i++) {
    receiver["dataPacket"+i] =
    receiver["user_data"+(i)].split("|");
    var _FirstName:String = receiver["dataPacket"+i][0];
    var _LastName:String = receiver["dataPacket"+i][1];
    var _Age:String = receiver["dataPacket"+i][2];
    myGridArray.push({FirstName:_FirstName, Last:_LastName,
    Age:_Age});
    delete (receiver["user_data"+i]);
    myGrid.dataProvider = myGridArray;
    } else {
    myGrid.removeAllColumns();
    myGrid.removeAll();
    myGridArray.push({status:"No data was found!"});
    myGrid.dataProvider = gridArray;
    sender.sendAndLoad("get_users.php",receiver,"post");
    To try and print the results in flash.. I get screwed and my
    grid.
    I believe it is because the PHP file is not reading my POST
    from my input test and using it in the query.
    here is what my PHP query looks like:
    $query = @mysql_query("SELECT * FROM $tableName WHERE
    FirstName=
    '$_POST[search]' ORDER BY
    FirstName");
    but if I put in "FirstName='$search'"
    and I put in elsewhere $search = "Levi"
    then it finds levi and prints it to the flash file.
    I"M SO FRUSTRAITED! haha, i'm so close
    It's like flash can't do two things at once. (send AND
    receive)
    anybody ever done this before? I could really use the advice.
    do I use a "while" condition in flash? or something? I don't
    know.

    Flash can send and receive from a PHP script.
    1. You need to attach the variables to the send LoadVars
    variable.
    sender.search = expression.
    Probably in your case you have a timeline variable also named
    seach that getURL automatically sends. So you might need to
    sender.search = search;
    2. Either drop the last argument or capitalized as noted in
    documentation. sender.sendAndLoad("get_users.php", receiver,
    "POST"); Default is POST if you leave it off.
    3. Be sure PHP script functions correctly. Create a standard
    HTML form to send the data to your PHP script and look at the
    output. That output is what Flash received in the return LoadVars
    object as your code appears to be trying to pickup. But be sure by
    looking at it.
    You also could loop using for(key in receiver) to trace the
    variables to verify what you are receiving instead of creating an
    HTML test form.
    Be sure to also trace the ok argument in receiver.onLoad.
    4. Look at strict typing all variables.
    reciever.onLoad = function(ok:Boolean) for example.

  • Flash-PHP Chating

    Hello,
    am developing a chat application in flash using php. here is
    the code for the flash file:
    on (release, keyPress "<Enter>") {
    if (inputT != "") {
    loadVariables("flashtest.php", _root, "POST");
    inputT = "";
    var param_interval:Number = setInterval(checkParamsLoaded,
    225);
    //updateAfterEvent();
    function checkParamsLoaded() {
    if (_root.topNmae == undefined) {
    trace("not yet.");
    } else {
    asd.htmlText += _root.topNmae;
    clearInterval(param_interval);
    and the php code in the server is :
    <?php
    $testVar=$_POST["inputT"];
    print("topNmae=<b>finoy</b> : $testVar<br
    />");
    ?>
    The problem is that when i use the application, it become
    heavy to use the memory usage and the application become slow. How
    can i recover it.

    Use POST instead of GET in your sendAndLoad()

  • Flash-PHP text Chating

    Hello,
    am developing a chat application in flash using php. here is
    the code for the flash file:
    on (release, keyPress "<Enter>") {
    if (inputT != "") {
    loadVariables("flashtest.php", _root, "POST");
    inputT = "";
    var param_interval:Number = setInterval(checkParamsLoaded,
    225);
    //updateAfterEvent();
    function checkParamsLoaded() {
    if (_root.topNmae == undefined) {
    trace("not yet.");
    } else {
    asd.htmlText += _root.topNmae;
    clearInterval(param_interval);
    and the php code in the server is :
    <?php
    $testVar=$_POST["inputT"];
    print("topNmae=<b>finoy</b> : $testVar<br
    />");
    ?>
    The problem is that when i use the application, it become
    heavy to use the memory usage and the application become slow. How
    can i recover it.

    THank you for your replies. I have fixed the sender.firstname
    bit......
    but as i'm of limited knowledge i can't quite see how to fix
    the
    "and your sendAndLoad() is not in one of your else statements
    so it always executes."
    If u have the time could you please explain. Thanks
    again

  • Help flash php

    i have 2 dynamic text in same keyframe the name of 1st text is home_txt and the 2on home_txtb. i won't to load php file so do i with this flash action script code
    var homePageText:String;
    var homePageTextb:String;
    // Assign a variable name for our URLVariables object
    var home_variables:URLVariables = new URLVariables();
    //  Build the varSend URL variable
    var home_varSend:URLRequest = new URLRequest("cms_control_katopsis.php");
    home_varSend.method = URLRequestMethod.POST;
    home_varSend.data = home_variables;
    // Build the varLoader variable
    var home_varLoader:URLLoader = new URLLoader;
    home_varLoader.dataFormat = URLLoaderDataFormat.VARIABLES;
    home_varLoader.addEventListener(Event.COMPLETE, home_var_comp);
               home_variables.sendRequest = "get_home_text";   
            // Send the data to the php file
               home_varLoader.load(home_varSend);
    function home_var_comp(event:Event):void {
        // Put the about text from mysql database into the about text field
        homePageText = event.target.data.home_text;
        home_txt.htmlText = "" + homePageText;
        homePageTextb = event.target.data.home_textb;
        home_txtb.htmlText = "" + homePageTextb;
    and i have control code for php
    if ($_POST['sendRequest'] == "get_home_text") {
        $sql = mysql_query("SELECT * FROM aithouses WHERE Aithousa='Ergastirio epikoinonion'");
        while($row= mysql_fetch_array($sql)) {
              $home_body = $row["Aithousa"];
              print "home_text=$home_body <br>";
    so my probleme is i can't desplay the next cell of my data on 2on text field.

    OK, great, I am getting closer! Thank you so much.
    I now get the "Email did not go through" case. The email gets
    sent though, so I am not sure why that is happening. I am assuming,
    where you say //find out if it's working first is working because
    the if statement gets triggered.
    How can I proceed from here?
    Thank you so much!

  • Log in form flash/php

    hello kirupa forum world.
    I've been trying to figure out how to have a log in form in
    flash-- All I really need is to have a username and pass, I need to
    pass the varibles to a php page(info.php) and this php page then
    does all the work, checks the database all that fun stuff and sends
    the site to another page(lets say index2). Now I'm not really sure
    what I'm doing on this.
    any suggestions?
    thanks,
    hutch

    Just read about Flash LoadVars.
    It will help you...

  • Flash, PHP, Javascript... and popup's

    HI all,
    I don't know if this is the wright place, but here's a
    problem that at leat all the scripts I've seen doesn't seem to
    help.
    I have a web page with php. Inside it I load a Flash movie.
    Inside it I have several objects that are loaded dynamically, and
    at each one I give a certain int value. Lets call it "index".
    When I click in one of the objects a javascript function is
    called to popup another webpage with another Flash movie. When the
    object is clicked, the index is passed to the javascript that
    opens, thru the window.open command, a new window.
    Since many people have popup blockers, and this kind of
    solution is annoying, do you know of any script in any programming
    language (preferably in Javascript or PHP), that can get all the
    data from the main flash movie and open another php file, with a
    effect similar to lightbox, and passing values to this second
    window.
    Has far as I experimented, this kind of solution, only works
    for images. Do you know if it's possible, or have any better
    sugestion?
    Thanks

    IFS may be excessive for what you are after. It really only integrates well with Java, and not PHP unfortunately.
    From a licensing perspective iFS requires either a Oracle Database or Oracle Application Server license in order to run legally.
    Maybe look towards filesystem storage instead of mysql blob, and just store a pointer to the file in the database.

  • Is SWFOBject messing up my Flash/PHP 'contact form'?

    Hi all,
    First post, and first project using Flash!
    Here's the
    page I'm having problems with...
    It's an email contact page that uses a Flash contact form
    that I purchased from iStockphoto. The swf uses a PHP script that I
    keep in the same location on my server as the swf. The PHP sends
    the email to my specified address. In theory that should work fine,
    but in the interests of keeping things working across browsers, and
    maintaining my Validation, I've been calling the swf using
    SWFObject.
    However, something is screwed up. When I click on 'Send' on
    the successfully embedded Flash form, nothing happens. Neither my
    hosting providers nor the author of the flash have been able to
    work out why - although they both agree that SWFObject may have
    something to do with it.
    Please bear in mind that I'm REALLY new to Flash, although
    I'm by no means a technonewbie - tell me what I'm looking for and
    what to change and I can keep up, but someone posted the following
    on another forum I frequent and I have no idea what it means:
    quote:
    Submitting a form relies on either a post or get method,
    maybe SWFObject needs specific configuration to do this. If it
    doesn't support either of those two methods you may need to use an
    interim piece of javascript or something to accept the form
    variables then call your sendmail.
    Help much appreciated!
    Owen

    kglad,
    The actionscript calls the PHP form but dosen't post any information, it loads in the browser and I get the email but nothing in it?
    I'm just looking for the correct Actionscript to paste into flash and hopefully get it working. Thanks for the help.

  • Flash / PHP Contact Form

    Hello,
    I am setting up a flash site (well trying too)  and decided to get a Flash  template of Template Monster so I could work on it, I have the site up  and all but the contact form is not working properly. The problem is the Actionscript dosen't  seem to work with the contact.php file that came in the template pack and  when I contacted them it was of no help, I was just refered me to their help  pages which showed I just had to insert my email address after rec="??????" and it would work. The actionscript is;
    rec="[email protected]";
    serv="php";
    var fields_descriptions= Array ("",
    Array("t1", "your_name", "Your Name:"),
    Array("t2", "your_address", "Your Address:"),
    Array("t3", "phone", "Telephone:"),
    Array("t4", "message", "Message:"),
    Array("t5", "your_email", "E-mail:"),
    Array("t6", "field_3", "Address:"),
    Array("t7", "field_4", "fax:")
    function reset_txt(name,name2,value) {
    path=eval(_target);
    path[name2]=value;
    this[name].onSetFocus=function() {
    path=eval(_target);
    if(path[name2]==value) { path[name2]="";}
    this[name].onKillFocus=function() {
    path=eval(_target);
    if(path[name2]=="") { path[name2]=value;}
    for (i=1; i<=fields_descriptions.length; i++) {
    reset_txt("t"+i, fields_descriptions[i][1], fields_descriptions[i][2]);
    And the contact.php file has the following script;
    <?php
    $your_name = $_GET['your_name'];
    $your_address = $_GET['your_address'];
    $phone = $_GET['phone'];
    $your_email = $_GET['your_email'];
    $message = $_GET['message'];
    $headers .= 'Content-type: text/html; charset=iso-8859-1';
    $content = "<html><head><title>Contact letter</title></head><body><br>";
    $content .= "Company: <b>" . $your_company . "</b><br>";
    $content .= "Name: <b>" . $your_name . "</b><br>";
    $content .= "Phone: <b>" . $your_phone . "</b><br>";
    $content .= "E-mail: <b>" . $your_email . "</b><br><hr><br>";
    $content .= $your_message;
    $content .= "<br></body></html>";
    mail("[email protected]","New enquiry from website",$content,$headers);
    ?>
    <html>
    <body bgcolor="#282E2C">
    <div align="center" style="margin-top:80px;color:#FFFFFF;font-size:16px;font-family:Tahom a;font-weight:bold">
    Your message was sent to <br> East Coast Computer Services <br>We will be in contact with you soon. Thank you.
    </div>
    </body>
    </html>
    I do get email from the form in Outlook but the problem is it has no content just blank fields, see below:
    From: [email protected] [mailto:[email protected]]
    Sent: 24 March 2011 23:10
    To: [email protected]
    Subject: New enquiry from website
    Company:
    Name:
    Phone:
    E-mail:
    I  haven't got a breeze about Flash or PHP, I just know a small bit from  using Dreamweaver. Would you know what is preventing the form from  working, I know it something to do with Arrays but what do I change in the PHP file so I start to receive information in the contact form? Thank you in advance.
    Kevin

    kglad,
    The actionscript calls the PHP form but dosen't post any information, it loads in the browser and I get the email but nothing in it?
    I'm just looking for the correct Actionscript to paste into flash and hopefully get it working. Thanks for the help.

Maybe you are looking for

  • HP TouchSmart 610-1280qd CTO Desktop PC Fan Noise

    Hi, Can you tell me if a loud CPU fan is normal for this computer? The CPU fan is working very hard and the CPU and GPU are all ~38 degrees Celcius. The bios reports 1100 CPU Fan Speed and 3800 system fan speed. It sounds like my CPU fan is actually

  • Trying to boot from an external hard drive - drive not recognized at boot

    I am trying to upgrade my Operating system. I am going from Mac OS 10.4.11 to Mac OS 10.6. Hardware: Model Name: MacBook Pro 15"   Model Identifier: MacBookPro1,1   Processor Name: Intel Core Duo   Processor Speed: 2.16 GHz   Number Of Processors: 1

  • PO and GRN different currency

    HI, I havale done with USD currency and done GRN but GRN has came to EUR currency. My PO is USD currency and GRN is EUR cuurency. I want clarification and solution why its happening with different currency. Thanks

  • PDF links work in Acrobat - don't work in Reader

    Acrobat version: 9.5.1 (latest as of this writing) Reader version: 10.1.3 (latest as of this writing) I createa  Word doc that has links to UNC shares that look like this: "\\server\share\file.exe" I convert the file to a PDF through Acrobat File ->

  • Using wildcards in URL variables (very simple question, i know)

    Hi all! Pulling my hair out over this... How do I use wildcards in URL variables? I have this code in compositionReady (which is working): var myurl = "http://www.mydomain.com/sub1/sub2/pagename"; var currenturl = window.location if(myurl == currentu