Hi, here's the code that I use in PHP
<?php
if ((IsSet($uname)) && (IsSet($pass)))
{
mysql_connect("localhost","bhavin","bhavin");
mysql_select_db("sirish");
$query = ("INSERT INTO bunty1 (username,password) VALUES
('$uname', '$pass')");
$result = mysql_query($query);
echo("your information has been recorded.");
}
else
echo("Variables not declared");
?>
$uname and $pass are the variables that receive the value from an swf file made in flash. Take any two input text fields in flash and check it whether it works or not. Let me know if I need to make any changes in the php.ini file or in the code.