The following warnings occurred:
Warning [2] Undefined variable $unreadreports - Line: 26 - File: global.php(961) : eval()'d code PHP 8.1.2-1ubuntu2.14 (Linux)
File Line Function
/global.php(961) : eval()'d code 26 errorHandler->error
/global.php 961 eval
/showthread.php 28 require_once





× This forum is read only. As of July 23, 2019, the UserSpice forums have been closed. To receive support, please join our Discord by clicking here. Thank you!

  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Private message system
#3
thanks for your message

i had already integrated some code (RAW)
maybe some will help me out make the basic working
i know the coding is not the best but i wil optimize if working

http://pastebin.com/4HPm7fTx

http://pastebin.com/DAmJ8jsq

CREATE TABLE IF NOT EXISTS
Code:
messages
(
Code:
id
int(11) NOT NULL AUTO_INCREMENT,
Code:
title
varchar(255) DEFAULT NULL,
Code:
message
text NOT NULL,
Code:
from
int(11) NOT NULL,
Code:
to
int(11) NOT NULL,
Code:
from_viewed
tinyint(1) NOT NULL DEFAULT '0',
Code:
to_viewed
tinyint(1) NOT NULL DEFAULT '0',
Code:
from_deleted
tinyint(1) NOT NULL DEFAULT '0',
Code:
to_deleted
tinyint(1) NOT NULL DEFAULT '0',
Code:
from_vdate
datetime DEFAULT NULL,
Code:
to_vdate
datetime DEFAULT NULL,
Code:
from_ddate
datetime DEFAULT NULL,
Code:
to_ddate
datetime DEFAULT NULL,
Code:
created
datetime NOT NULL,
PRIMARY KEY (
Code:
id
)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ;
  Reply


Messages In This Thread
Private message system - by gaborroos - 02-03-2017, 10:44 AM
Private message system - by mudmin - 02-03-2017, 01:23 PM
Private message system - by gaborroos - 02-03-2017, 02:49 PM
Private message system - by mudmin - 02-03-2017, 03:32 PM
Private message system - by gaborroos - 02-03-2017, 03:49 PM
Private message system - by gaborroos - 02-03-2017, 07:11 PM
Private message system - by mudmin - 02-16-2017, 02:34 AM
Private message system - by gaborroos - 02-16-2017, 06:16 AM
Private message system - by mudmin - 02-18-2017, 02:35 PM
Private message system - by mudmin - 02-18-2017, 02:35 PM
Private message system - by mudmin - 02-21-2017, 12:51 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)