I am trying to make my gift sending facebook app show the current pages ItemName in the message for the sendRequestViaMultiFriendSelector function. When an item to send is clicked on, I send the user to another page with the Item name/id stuff stored in $_GET['varitem'] Here's a snippet of code from the gift sender portion:
function sendRequestViaMultiFriendSelector() {
FB.ui({method: 'apprequests',
message: '<?php echo $user_profile['name']?> has sent you some <?php echo $row_Recordset1['ItemName']; ?>!'
}, requestCallback);
}
The user name shows up properly, but I simply cannot seem to get the item name to show. Also, way above that code, I have the required coding to make the item name and id show on the page (which works fine). Here's a snippet of that code too, hoping that it may be of help to get an answer:
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
if (PHP_VERSION < 6) {
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
}
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
$varItem_Recordset1 = "1";
if (isset($_GET['ItemID'])) {
$varItem_Recordset1 = $_GET['ItemID'];
}
mysql_select_db($database_XXXXXXX, $XXXXXXX);
$query_Recordset1 = sprintf("SELECT * FROM item WHERE ItemID = %s", GetSQLValueString($varItem_Recordset1, "int"));
$Recordset1 = mysql_query($query_Recordset1, $XXXXXXX) or die(mysql_error());
$row_Recordset1 = mysql_fetch_assoc($Recordset1);
$totalRows_Recordset1 = mysql_num_rows($Recordset1);
?>
OK, I have managed to edit my code, but can still only get the ID to show as the name. I think I am getting closer to figuring it out. Here is my editid code
function sendRequestViaMultiFriendSelector() {
FB.ui({method: 'apprequests',
message: '<?php echo $user_profile['name']?> has sent you some <?php echo $varItem_Recordset1 ['ItemID']; ?>!'
}, requestCallback);
}
Remember though, I want the item name based on the current page iD to show. Thanks for listening!
Ha ha, never mind I've figured it out. I was making it harder than it needed to be. What i did to fix my problem was to simply trap the item name in a variable and echo that. Derp!
Example:
<?Php $varName = $row_Recordset1['ItemName']; ?>
function sendRequestViaMultiFriendSelector() {
FB.ui({method: 'apprequests',
message: '<?php echo $user_profile['name']?> has sent you some <?php echo $varName; ?>!'
}, requestCallback);
}