How do you save Full URLs in a database |
1/20/2010 8:34:59 AM |
PHPRunner General questions | |
H
horsey_kim author
I am not sure if I described what I want very clear ... But here we go: |
|
A
|
ashipley 1/21/2010 |
I had similar problems when I set up my database, because some URL's are so long, they get "truncated" due to the allocated field size in the database. I started setting my URL fields to 150 characters, and the problem went away. There is a similar problem with displayig the URL on the list page, since the URL may not have a good place for the program to "wrap" the text. You can set the intended field size to something like 15 characters, but it will display more like 30 or 40 characters wide, because it does not know where to break the URL. You can set the field to display something like "View Link", and the length or the URL will not affect your column widths any more. |
H
|
horsey_kim author 1/22/2010 |
I had similar problems when I set up my database, because some URL's are so long, they get "truncated" due to the allocated field size in the database. I started setting my URL fields to 150 characters, and the problem went away. There is a similar problem with displayig the URL on the list page, since the URL may not have a good place for the program to "wrap" the text. You can set the intended field size to something like 15 characters, but it will display more like 30 or 40 characters wide, because it does not know where to break the URL. You can set the field to display something like "View Link", and the length or the URL will not affect your column widths any more. Arthur
|
J
|
Jane 1/22/2010 |
Hi, |