i-hate-blue 5 Newbie Poster

You need to convert it to PayPal's known currency, for the currency exchange rate, you can get it via: http://www.exchangerate-api.com/

karthik_ppts commented: ueful post +5
i-hate-blue 5 Newbie Poster

Or you can install wifi-radar, to check any wifi signals.

sudo apt-get install wifi-radar
i-hate-blue 5 Newbie Poster

Try using innerHTML, and remove .value property on "new_code":

var new_code = document.getElementById(new_id)[B].innerHTML[/B];
document.write(new_code);
i-hate-blue 5 Newbie Poster

Well, look at this line:

<div><font color='blue'><a [B]onlick[/B]='toggle_visibility("<?php echo $id; ?>")'>Add More Questions</a></font></div>

I think it should be onclick, not onlick

i-hate-blue 5 Newbie Poster

Try this one:

$cont = array();
while($row = mysql_fetch_assoc($query))
{					
    $cont[B][][/B] = array($row['tipo_cont'] => $row['conteudo_cont']);
}

var_dump($cont); // show result.
i-hate-blue 5 Newbie Poster

Perhaps you can look at this php chat: http://www.phpfreechat.net/

i-hate-blue 5 Newbie Poster

What is the value of $_REQUEST ?
And what is the value of $flag2 supposed to? in the first if statement its a string (COMPLETED POSITIVE)

i-hate-blue 5 Newbie Poster

Perhaps you can use text file as the chat storage on the server, which named by dates.
Such as: 20101013_chat.txt for this day, and the next day write to different file.

i-hate-blue 5 Newbie Poster

a friend of mine have instaled apache in other machine and i have stored my php scripts in htdocs but i dont know how connect remotely from other computer please if someone can help me

What exactly do you mean by 'connect remotely', are :
1. You/Your friend want to access your/his script via browser?
2. You/Your friend want to exchange files?

i-hate-blue 5 Newbie Poster
array(2) { [0]=> string(1) "1" ["id"]=> string(1) "1" } array(2) { [0]=> string(1) "6" ["id"]=> string(1) "6" }

you can try edwinhermann script below then :

mysql_query("DELETE FROM buddies WHERE characterid = ".$players['id']);
mysql_query("DELETE FROM inventoryitems WHERE characterid = ".$players['id']);
mysql_query("DELETE FROM skills WHERE characterid = ".$players['id']);
mysql_query("DELETE FROM keymap WHERE characterid = ".$players['id']);
mysql_query("DELETE FROM characters WHERE characterid = ".$players['id']);

so... is it working?

i-hate-blue 5 Newbie Poster

What is the content of $players? can you put

var_dump($players);

after while();

i-hate-blue 5 Newbie Poster

You could add an incremental variable to the code, such as this one :

$i = 1;
foreach($d_array as $da) {
   echo '<div id="name_of_'.$i.'">Content at '.$i.'</div>';
   $i++;
}

hope you know what i mean.