作者abears (投资自己)
看板Flash
标题[问题] 这样写法行不行阿??
时间Mon Aug 28 00:25:23 2006
我有各程式码如下
fla的程式 ...
on(release)
{
addressVars = new LoadVars();
addressVars.load("
http://localhost/testing/addressbook.php");
addressVars.onLoad = function()
{
_root.theName = addressVars.theName;
_root.theEmail = addressVars.theEmail;
}
}
php的程式
<?php
$theName = "Kev" ;
$theEmail = "
[email protected]" ;
$passIn = "" ;
$passIn .= "theName=" . $theName . "&" ;
$passIn .= "theEmail=" . $theEmail ;
echo $passIn ;
?>
输出结果如下
http://www.kevinleitch.co.uk/testarea/flash_php.php
为什麽我的无法出来呢??
有没有高手可以帮忙一下??
是哪里出错呢???
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 220.139.188.141
1F:推 aquarianboy:出来什麽? 我看是有字的 :) 08/28 00:48