Login     Sign up
How to add message to notification ?
Mohammad Emran (@monemran)
Join date: Sep 15th 2010
Community posts: 28
View Profile
Send Message

Can anybody tell me how to insert notification message ?

186 months ago
Jcow Master (@falcone)
Join date: Sep 2nd 2010
Community posts: 917
View Profile
Send Message

function send_note($id,$msg)

186 months ago
Mohammad Emran (@monemran)
Join date: Sep 15th 2010
Community posts: 28
View Profile
Send Message

Thanks falcone.

186 months ago
Tran Hoa (@bonghoavn)
Join date: Sep 27th 2010
Community posts: 1
View Profile
Send Message

function send_note($id,$msg) ? w's name of file

185 months ago
domenico nbi (@domy18)
Join date: Aug 26th 2010
Community posts: 10
View Profile
Send Message

when make this ?
send_note funzione ($ id, $ msg)

185 months ago
Jcow Master (@falcone)
Join date: Sep 2nd 2010
Community posts: 917
View Profile
Send Message

function send_note($id, $msg) {
global $client;
if ($client['id'] == $id)
return false;
$note['message'] = $msg;
$note['created'] = time();
$note['to_id'] = $id;
sql_insert($note,tb().'messages');
}
includes/libs/common_inc.php

185 months ago