C
|
cgphp 7/26/2011 |
$split = explode(",", $value); |
W
|
webdino author 7/27/2011 |
the comma is displayed still |
C
|
cgphp 7/27/2011 |
I think there isn't a direct solution. The comma is automatucally added from PHPrunner. Also using a str_replace the comma is still there. <img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=reply&id=59716&image=1&table=forumreplies' class='bbc_emoticon' alt=':unsure:' /> |
C
|
cgphp 7/27/2011 |
We have to wait for a reply from the team. |
![]() |
mikue from germany 7/27/2011 |
if ($value) { |
W
|
webdino author 7/27/2011 |
chgp has posted before $split = explode(",", $value); $str = ""; foreach($split as $item){ $str .= $item."<br/>"; } $value = $str;
|
![]() |
Sergey Kornilov admin 7/27/2011 |
webdino, |
W
|
webdino author 7/27/2011 |
okay I send it tomorrow, but the str_replace does not work and there must be an internal fault by PHPR |
![]() |
Sergey Kornilov admin 7/27/2011 |
Open a ticket at http://support.xlinesoft.com sending your Demo Account URL along with your order number and issue description. |
W
|
webdino author 7/28/2011 |
PS. str_replace is a built-in PHP function. It just works. More info: http://www.php.net/manual/en/function.str-replace.php
|
![]() |
Sergey Kornilov admin 7/28/2011 |
You saying that str_replace doesn't work. I'm saying that this is unlikely to happen because str_replace is a built-in PHP function. |
C
|
cgphp 7/28/2011 |
Using an alias you should solve your issue. Show only the alias, as a custom field, in the list page and show only the original field in the add/edit pages. Enter in the custom field a query to retrieve the value of the original field: global $conn; |