-
New to php. All my other functions except update. I don't get any errors in the amfphp browser. Any assistance would be greatly appreciated.
// add friends to list
public function addFriend ( $athletesfirstname, $athleteslastname, $athletessport, $athletesusername, $athletespassword, $athleteszipcode )
{
$sql = "INSERT INTO friends (
athleteskey,
athletesfirstname...
2009-06-09 15:07:39 UTC in AMFPHP (Flash Remoting for PHP)
-
I'm new to PHP but I'm an experienced Flex coder. I'm attempting to setup basic CRUD functionality. Here's my script.
<?php
class services
{
public function services()
{
$mysql= mysql_connect("localhost", "" , "");
mysql_select_db("theclub_theclub");
}
//get list of all registered athletes
public function getAthletes()
{.
2009-05-09 16:49:55 UTC in AMFPHP (Flash Remoting for PHP)
-
I'm a flex developer with little knowledge of php. I'm trying to create basic crud services that I can use/alter for my Flex projects. Here's what I have so far
<?php
class services
{
public function services()
{
$mysql = mysql_connect("localhost", "myusername" , "pw" );
$mysql_select_db("sports_friend_finder");
}
//get...
2009-04-05 15:48:12 UTC in AMFPHP (Flash Remoting for PHP)