Jump to content

gleison_gomes

Members
  • Posts

    10
  • Joined

  • Last visited

gleison_gomes's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. I don't know if there's a difference...
  2. Thanks for the reply! I've changed the code and it's valid now. However, I'm still facing the error. The code now is: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR...ml4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <link href="imagens/grid.css" rel="stylesheet" type="text/css"> <title>xxx</title> </head> <body bgcolor="#cccccc"> <!--url's used in the movie--> <!--text used in the movie--> <!-- saved from url=(0013)about:internet --> <div class="grid_azul"><span class="menusup-li">Suprimento</span><img src="imagens/marca.png" alt="eee" width="183" height="25" class="img-marca"></div> <div class="grid_branco"></div> <div class="grid_verde"></div> <div class="grid_amarela"></div> <object type="application/x-shockwave-flash" data="suprimento.swf?path=suprimento.swf" width="780" height="890"> <param name="movie" value="suprimento.swf"> </object> </body> </html>
  3. I'm sorry. I misunderstand the question. The HTML code is: <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <link href="imagens/grid.css" rel="stylesheet" type="text/css"> <title>XXX</title> </head> <body bgcolor="#cccccc"> <!--url's used in the movie--> <!--text used in the movie--> <!-- saved from url=(0013)about:internet --> <div class="grid_azul"><span class="menusup-li">yyy</span><img src="imagens/marca-XXX.png" alt="XXX" width="183" height="25" class="img-marca"></div> <div class="grid_branco"></div> <div class="grid_verde"></div> <div class="grid_amarela"></div> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.ma...ersion=7,0,0,0" width="780" height="890" id="suprimento" align="middle"> <param name="allowScriptAccess" value="sameDomain" /> <param name="movie" value="suprimento.swf" /> <param name="menu" value="false" /> <param name="quality" value="high" /> <param name="bgcolor" value="#cccccc" /> <embed src="suprimento.swf" menu="false" quality="high" bgcolor="#cccccc" width="780" height="890" name="suprimento" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://get.adobe.com...r/flashplayer/" /> </object> </body> </html>
  4. Thanks for the reply. Actually, there's no HTML form. The forms are built by the Flash object...
  5. But it's working on Chrome... Is there any known approach to be avoided in the code?
  6. Hi, guys! It was a code issue. Thanks! However, now the application only works in Chrome. In IE it's random. Every other time, it works. Does anyone know what can be the cause of that intermittency of IE? Thanks!
  7. It's getting weirder... It started to work on Chrome but on IE it doesn't work... Maybe it's a bug in Internet Explorer...
  8. I used the Chrome Developer Tools and I see that the data is being sent normally... I wonder if it's a problem in Apache server...
  9. Sorry, mistyping: "...data come black...". :-) In the Flash form: Servidor.sendAndLoad("Servidor.php?p1&p2&p3&ck=" + new Date().getTime(), Mensagem); In the integration between Flash and PHP (php page): $matricula = trim($_POST['Matricula']); It's simple, but when I do this: try { throw new Exception('Identificador: '. $_POST['Identificador'] . 'Mat: ' . $_POST['Matricula'] . 'Nome: ' . $_POST['Nome']); } catch(Exception $ex) { $mensagem = 'Erro='.urlencode($ex->getMessage()); echo die($mensagem); } The POST fields come blank at the first time and filled out in the second time on... weird...
  10. Hi, guys! I have a system developed in PHP and Flash. It is divided into layers (MVC). I'm facing the following issue: the form, which is done in Flash, sends data to PHP via POST. I threw an exception printing what is coming from the form. When I click "Save" the data come black. As what I filled out the form remains on the screen, if I click again on "Save" the data are sent normally. What can it be? Anyone got a light? Thanks in advance!
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.