Muchas gracias, pero aun así no logro solucionarlo, desconozco por que no reconoce ADDR NombredePROC
(parámetro 3).
(parámetro 3).
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes MenúCREATE_THREAD PROC
INVOKE CreateThread,NULL,NULL,ADDR Thread,NULL,0,NULL
ret
CREATE_THREAD ENDP
Thread PROC
INVOKE CreateToolhelp32Snapshot,TH32CS_SNAPPROCESS,0
cmp eax,NULL
mov hdl_snap,eax
mov inf_process.dwSize,128h
INVOKE Process32First,[hdl_snap],ADDR inf_process
cmp eax,TRUE
INVOKE Process32Next,[hdl_snap],ADDR inf_process
ret
Thread ENDP
error A2006: undefined symbol : Thread
th32DefaultHeapID DWORD PTR ?
th32DefaultHeapID DWORD ?
PROCESSENTRY32 STRUCT
dwSize DWORD ?
cntUsage DWORD ?
th32ProcessID DWORD ?
th32DefaultHeapID DWORD ?
th32ModuleID DWORD ?
cntThreads DWORD ?
th32ParentProcessID DWORD ?
pcPriClassBase DWORD ?
dwFlags DWORD ?
szExeFile BYTE MAX_PATH DUP(?)
PROCESSENTRY32 ENDS
inf_process PROCESSENTRY32 <>
PROCESSENTRY32 STRUCT
dwSize DWORD ?
cntUsage DWORD ?
th32ProcessID DWORD ?
th32DefaultHeapID DWORD PTR ?
th32ModuleID DWORD ?
cntThreads DWORD ?
th32ParentProcessID DWORD ?
pcPriClassBase SDWORD ?
dwFlags DWORD ?
szExeFile BYTE ?
PROCESSENTRY32 ENDS
Cita de: Spider-Net en 24 Julio 2012, 23:58 PM
Tiene que ver con la codificación. Lo ideal es que cambies la codificación de utf-8 a ISO-8859-1. Otra solución que debería funcionar es usar htmlentities cuando vayas a mostrar la información, algo así:for ($i = 0; $i < 3; $i++) {
//$returnMarkup .= "<h3>".$entry[$i]->title."</h3>"; // Title of the update
//$returnMarkup .= "<p>".$entry[$i]->link."</p>"; // Link to the update
$returnMarkup .= "<p>".htmlentities($entry[$i]->description)."</p>"; // Full content
//$returnMarkup .= "<p>".$entry[$i]->pubDate."</p>"; // The date published
$returnMarkup .= "<p>".htmlentities($entry[$i]->author)."</p>"; // The author (Page Title)
}
<?php
// Without this "ini_set" Facebook's RSS url is all screwy for reading!
// This is the most essential line, don't forget it.
ini_set('user_agent', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; es-ES; rv:1.8.1.9) Gecko/20071025 Firefox/2.0.0.9');
// This URL is the URL to the Facebook Page's RSS feed.
// Go to the page's profile, and on the left-hand side click "Get Updates vis RSS"
$rssUrl = "http://www.facebook.com/feeds/notifications.php?id=319579974767006&viewer=1074983523&key=AWhjAKL7r9fCfZlH&format=rss20";
$xml = simplexml_load_file($rssUrl); // Load the XML file
// This creates an array called "entry" that puts each <item> in FB's
// XML format into the array
$entry = $xml->channel->item;
// This is just a blank string I create to add to as I loop through our
// FB feed. Feel free to format however you want, or do whatever else
// you want with the data.
$returnMarkup = '';
// Now we'll loop through are array. I just have it going up to 3 items
// for this example.
for ($i = 0; $i < 3; $i++) {
//$returnMarkup .= "<h3>".$entry[$i]->title."</h3>"; // Title of the update
//$returnMarkup .= "<p>".$entry[$i]->link."</p>"; // Link to the update
$returnMarkup .= "<p>".$entry[$i]->description."</p>"; // Full content
//$returnMarkup .= "<p>".$entry[$i]->pubDate."</p>"; // The date published
$returnMarkup .= "<p>".$entry[$i]->author."</p>"; // The author (Page Title)
}
// Finally, we return (or in this case echo) our formatted string with our
// Facebook page feed data in it!
echo $returnMarkup;
?>