Hi, I am new to php scripting.
Here is my situation:
I have an swf file which calls the getUrl command.
getURL("script1.php", "_blank", "POST");
- this calls a php file i have on my server called script1.php. This script modifies the contents of several *.txt files, and needs to be called to do this because swf files do not have the capability to write any data to a server, and need to call a server-side script that will write the data for them.
the problem is that i dont know how to run this script in the background. See, when my swf file calls the script, i want the server to run it, and write thge data accordingly, but i dont want a white (blank) page to show up, or any sort of page period. When script1.php is called from the swf file i want the viewer of the webpage to be able to continue viewing their page uninterrupted. The reasoning behind this, is that at times this swf file will call the above code { getURL("script1.php", "_blank", "POST"); } several times.
As I am relatively new to php scripting, i will need a detailed explanation of what needs to be done. (perhaps there is some sort of command i can run at the beginning of my php script that will make it so that the server tells the client not to open a browser window)