PHP help

How do i get information from a php file (let’s say it’s named action.php) without opening the php page?

you cant :stuck_out_tongue: A page needs to be accessed to have its contents be interpreted.

What exactly are you trying to do?

Well…like sending a mail from flash…i know how to do it from php and to call php from flash you have to acces the php file…don’t you?

lv = new LoadVars();
lv.load("action.php");

Access, yes. Load into the browser, no. Note Vash’s example. Using a loadVars object will open and access the php file, but it will not load the php page into the browser window.

senocular in Server-Side!?