Home Tutorials Forums Articles Blogs Movies Library Employment Press Buy templates

Go Back   ActionScript.org Forums > Flash In Action > Widgets

Reply
 
Thread Tools Rate Thread Display Modes
Old 05-17-2005, 01:56 AM   #1
brendanww
AS.Org Newbie
 
Join Date: Feb 2005
Posts: 78
Default Simple PHP/MySql/Flash App.

I made this about a month ago, so please don't make fun of me for its crappy coding, just thought I'd share how I did it

sendchat.php
PHP Code:
<?php
$message 
$_POST['damessage'];
$sender $_POST['dasender'];
$connect mysql_connect("*******""******""*****");
mysql_select_db("*********"$connect);
$query "INSERT INTO chat_test (user, message) VALUES ('$sender', '$message')";
mysql_query($query);
?>
loadme.php
PHP Code:
<?php
$connect 
mysql_connect("****""******""******");
mysql_select_db("*******"$connect);
$id $_POST['id'];
$id++;
$query mysql_query("SELECT * FROM chat_test WHERE id='$id'");
$numcold mysql_num_rows($query);
if(
$numcold == "0")
{
$chill "yes";
}
else
{
$chill "no";
}
$fetchit mysql_fetch_array($query);
$message "$fetchit[message]<br>";
echo 
"&retm=$message&retu=$fetchit[user]&reti=$fetchit[id]&retc=$chill";
?>
checkid.php
PHP Code:
<?php
$connect 
mysql_connect("******""******""******");
mysql_select_db("*******"$connect);
$query mysql_query("SELECT * FROM chat_test ORDER BY id DESC LIMIT 0, 1");
$fetchthis mysql_fetch_array($query);
echo 
"&lastid=$fetchthis[id]";
?>
here is fla...http://www.mad-host.net/chat.fla

MySql Table chat_test
id int(11) No auto_increment
user varchar(255) No
message varchar(255) No

you can also use LONGTEXT for message so peeps can make longer messages. I set this page up so that a friend of mine could talk to me online (his parents dont want him downloading instant messenger programs), and therefore there isnt much security (no eregi's or preg's checking for formatting), i wouldnt recommend using this either as it could be much faster and there are lots of things that i'd change if i had time to.
brendanww is offline   Reply With Quote
Old 07-15-2006, 08:43 AM   #2
creativeforces
Registered User
 
creativeforces's Avatar
 
Join Date: Apr 2006
Posts: 52
Post

This is great, I have been looking all oer for somthing like this, but the link to your fla doesn't work anymore...Is it still available for download.
creativeforces is offline   Reply With Quote
Reply


Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 02:01 PM.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Ad Management plugin by RedTyger
Copyright 2000-2009 ActionScript.org. All Rights Reserved.
Your use of this site is subject to our Privacy Policy and Terms of Use.