Tagged Questions
3
votes
4answers
241 views
Removing newlines in PHP - but they still show in LONGTEXT in MySQL
Ello chaps.
Ok - cleaning my string like this:
$clean_string = preg_replace("/[\n\r]/"," ",trim($dirty_string));
.. Echo it out to the screen and it works - one lovely big lump of text with no ...
2
votes
4answers
302 views
Unable to save large text in mysql thru php
$query="INSERT INTO `ARTICLES` (`TITLE`, `BY`, `IN`, `POST`)
VALUES('". $title ."', '". $by ."', '". $in ."', '". $_POST['post'] ."')";
This code is able to save small length text but not large. ...
0
votes
1answer
78 views
SQL, Is it bad to concat() log data in longtext field?
I'm building my own authentication system. Right now I have my database setup to log each login timestamp by:
$query = 'UPDATE `users` SET login_log = concat(login_log, ?) WHERE userKey = ? LIMIT 1 ...
0
votes
4answers
238 views
PHP Longtext to display like the user wrote it
I need to know how to display information put in a database longtext field the way it was written.
Like if a user writes in this below:
My life is full of love I fly like
wedding doves I blow passed ...