if you use sendAndLoad into a loadVars object in flash you can just have a
php script that prints a query string...

lets say you have the name "Robert" in a loadVars object names theName. So:
<flash code>
theName.name = "Robert";
</flash code>

now use the sendAndLoad with the POST-method and specify a php-file with the
following code:

<?php

    function sayHello($theName) {
        print("Hello ".$theName);
    }

    if (isset($_POST["name"])) {
        sayHello($_POST["name"]);
    }

?>


"PETCOL" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Any one know of any good tutorials for Flash into PHP 4.3.4 the Flash side
> I'm O.K. with, just having problems with the PHP, think it's a version
thing
> ?
>
> Col
>
> -- 
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
>

-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to