Displaying Images In Cells
I`m pulling a random 15 images from a mysql database. how can I do this with a single query? I can do one row and loop the cells easy enough, or do multiple queries, but how can I create a row, show 5 images, then another row and another 5 images and so on with just the one query? Is it possible?
<table>
<tr>
<td>Image1</td>
<td>Image2</td>
<td>Image3</td>
<td>Image4</td>
<td>Image5</td>
</tr>
<tr>
<td>Image6</td>
<td>Image7</td>
<td>Image8</td>
<td>Image9</td>
<td>Image10</td>
</tr>
<tr>
<td>Image11</td>
<td>Image12</td>
<td>Image13</td>
<td>Image14</td>
<td>Image15</td>
</tr>
</table>
View Complete Forum Thread with Replies
Sponsored Links:
Related Messages:
Getting Images In Table Cells To Align At The Bottom
I am trying to get a series of image in cells a table row to all align at the bottom of the table cells..... I have tried both the img align top, botom and abstop and absbottom, but they always end up aligned in the vertical center of the cell. The images are nothing more than one image that has been resized vertically based on a data array. Code:
View Replies !
View Related
Displaying 5 Images In A Row
I have spent serveral weeks trying to figure out how to do this. Attached below is code for a function that outputs images in a row. However I am tring to find a way so that it would output 5 images and then drop a line and continue to do this untill all the images have been displayed. The variable which the output is stored in is named $out (towards the bottom). The variable $thumb_row is the total number of images that are allowed to be displayed. Here is an illustration of what I am trying to do the X is an image. XXXXX XXXXX XXXXX XXXXX Code:
View Replies !
View Related
Displaying Images Across A Row
If want to be able to display some photos on a page but I do not want them " one to a colum" I want two to a row. The code I have so far is: PHP Code: <?php do { ?> <tr> <td><div align="center" class="bodytext"><?php echo $row_photos['link']; ?></div></td> <td><div align="center"><img src="/photos/<?php echo $row_photos['photo']; ?>" /></div></td> </tr> <tr> <td> </td> <td><div align="center"><img src="images/rossrunning_bg.gif" width="252" height="13" /></div></td> </tr> <?php } while ($row_photos = mysql_fetch_assoc($photos)); ?> ........................................
View Replies !
View Related
Displaying Images
was wondering if anyone had a snippet for something like this. i am looking for a script like this: http://thesuperficial.com/image.php?path=/2007/03/haylie-duff-cavallari-south-beach-01.jpg.
View Replies !
View Related
Displaying / Resizing Images
I'm trying to create a php page to automatically display all images in a directory I specify, I want all the images to be thumbnailed on the fly, this is what I've come up with so far.... <? $TheDirectory = dir($ImageDir); while($Filename = $TheDirectory->read()) { // Make sure we only show graphic files! if ((strstr($Filename, '.jpg') <> False) | | (strstr($Filename, '.gif') <> False) | | (strstr($Filename, '.png') <> False)) { // Get info about this image. $ImageSize = GetImageSize($TheDirectory->path . $Filename); // Create a thumbnail, try to keep the proportions correct $ImageScale = $ImageSize[1] / $ImageSize[2]; $SourcePic = imagecreatefromjpeg ($TheDirectory->path . $Filename); $DestPic = imagecreate(100, 100 * $ImageScale); // Create a thumbnail from the image imagecopyresized($DestPic, $SourcePic 0, 0, 0, 0, 100, 100 * $ImageScale, $ImageSize[1], $ImageSize[2]); // Display the image imagejpeg($SourcePic); // Free up the resouces imagedestroy($SourcePic); imagedestroy($DestPic); } } $TheDirectory->close(); ?> Ok, so $ImageDir is the directory name I send the page, and as you can see I've only set it up to handle jpg files atm. So this isn't working, I just get a blank page what I need to know is... - How do I find out what version of gd I'm using? - Is there a way I can load a image, resize it then output it without using the gd functions? I would rather output the raw headers if possible but I'm not sure how, I'm not sure if my webhost is using the required version of gd, and I'd rather not have to hassle him for months to upgrade it. - Does anyone know any examples of thumbnail gallerys I can download?
View Replies !
View Related
PhpBB And Displaying Images
I need to add upload functionality of images to phpBB 1.4.4. I have decided to have the images upload directly into mysql as binary data. I have been succesful in adding upload code into phpBB to allow it to upload images. What I am having a problem with is displaying those uploaded images on the viewtopic.php page. I have taken a look at the tutorial on phpbuilder that talks about uploading and viewing binary data in mysql and I have followed the examples. here's the link if interested: http://www.phpbuilder.com/columns/florian19991014.php3 So basically this tutorial has the user create another file that will be called to grab and format (with proper header info -- image/gif) the image and send it back to the relevant page. So within my viewtopic page - where I want the image to appear I provide the following code. post_id is a parameter that tells getdata.php where the image field is located for that record. PHP Code:
View Replies !
View Related
Displaying Images With A Filter
Wondering if someone can point me in the right direction. Im trying to display images from a directory, but i need to filter them. Like a wildcard, for example to display all images ending with *1h.png or to display images starting with cpu0*.*
View Replies !
View Related
Displaying Images In A Ratio
Instead of fixing the images height/width, can I have it show by a ratio of the original size? What I have is a large image and want to make a small "preview" of it (without creating another file), at the moment I just set it to 80x80pixels but the problem with this is if the large image isn't square it looks squashed. Is it possible to do it by a ratio?
View Replies !
View Related
Displaying GD Images Inline
I've created a script that allows someone to create an Image using variables that they define. After filling out the fields, they click preview. And it all works! ...except for 1 thing. I want to be able to generate the image with PHP and display it within the same page as the form (right below it), but when the user clicks preview, it shows nothing on the page, except the image. Code:
View Replies !
View Related
Displaying Blob Images
I am trying to create an image gallery that allows other users to upload images into. I want all the images to be displayed on the one page. I've figured out how to do this by using a table with a blob field. I've decided not to put the images in the directory as this method seems like it would be too complicated for my application. Code:
View Replies !
View Related
Displaying Images Stored
i am using ftp_nlist() get the list of files in a folder containing images (on another server). how should i display those images on my PHP page? im thinking about "ftp_get"ing them, storing them on my server, then displaying them. but seems like an inefficient way of doing it.
View Replies !
View Related
Displaying Database Images
I need to display a thumbnail of a large image that is contained in a database. I cannot upload a thumbnail into the database for various reasons. I have a function that resizes images before inserting into a database, and I know how to display image data from the DB into the browser so I have a rough idea of what's involved. My problem is that I need to get an image from the DB, resize down it and display it in the browser on the fly.
View Replies !
View Related
Displaying Images From Another Vhost
I have several sites hosted on the same server. I'm using VHOSTS in Apache to serve the sites. My question is this - without creating a symbolic link in one vhost to the other vhost's image folder - AND - without calling an absolute url for an image source How can I call an image to display in one site from another one? Is there a way?
View Replies !
View Related
Problems Displaying Images
I am using PHP and MySQL to create a dynamic website. Using MS Internet Explorer to test my website, everything works fine. When I use Netscape and Opera to test my work, I have problems to display images.
View Replies !
View Related
Displaying Images - Set_magic_quotes_runtime
<?php set_magic_quotes_runtime(0); ini_set("include_path","/home/fhlinux192/s/studentart.streamlinenettrial.co.uk/user/htdocs/includes/"); include ('pics.inc'); if($id) { $connection = mysql_connect($host,$user,$password) $db = mysql_select_db($database, $connection) $query = "SELECT image, image_type FROM tbl_images WHERE image_id = $id"; $result = mysql_query($query); $data = mysql_result($result,"image"); $type = mysql_result($result,"image_type"); Header( "Content-type: $type"); $data = stripslashes($data); echo $data; }; ?>
View Replies !
View Related
Displaying Integer Numbers As Images
I'm trying to display some images of digits 1-9 with respect to an int variable. i wrote a function to convert the int to string and did a ereg_replace to display the corresponding image. well seems like its not as easy as it seems. the function keeps replacing the wrong characters. function digitalize($average_user_review) { $average_user_review = ereg_replace("0", "<IMG SRC="images/digit0.gif" WIDTH="6" HEIGHT="18" ALT="" BORDER="0" VSPACE="7">", $average_user_review); $average_user_review = ereg_replace("1", "<IMG SRC="images/digit1.gif" WIDTH="6" HEIGHT="18" ALT="" BORDER="0" VSPACE="7">", $average_user_review); $average_user_review = ereg_replace("2", "<IMG SRC="images/digit2.gif" WIDTH="6" HEIGHT="18" ALT="" BORDER="0" VSPACE="7">", $average_user_review); $average_user_review = ereg_replace("3", "<IMG SRC="images/digit3.gif" WIDTH="6" HEIGHT="18" ALT="" BORDER="0" VSPACE="7">", $average_user_review); $average_user_review = ereg_replace("4", "<IMG SRC="images/digit4.gif" WIDTH="6" HEIGHT="18" ALT="" BORDER="0" VSPACE="7">", $average_user_review); $average_user_review = ereg_replace("5", "<IMG SRC="images/digit5.gif" WIDTH="6" HEIGHT="18" ALT="" BORDER="0" VSPACE="7">", $average_user_review); $average_user_review = ereg_replace("6", "<IMG SRC="images/digit6.gif" WIDTH="6" HEIGHT="18" ALT="" BORDER="0" VSPACE="7">", $average_user_review); $average_user_review = ereg_replace("7", "<IMG SRC="images/digit7.gif" WIDTH="6" HEIGHT="18" ALT="" BORDER="0" VSPACE="7">", $average_user_review); $average_user_review = ereg_replace("8", "<IMG SRC="images/digit8.gif" WIDTH="6" HEIGHT="18" ALT="" BORDER="0" VSPACE="7">", $average_user_review); $average_user_review = ereg_replace("9", "<IMG SRC="images/digit9.gif" WIDTH="6" HEIGHT="18" ALT="" BORDER="0" VSPACE="7">", $average_user_review); $average_user_review = ereg_replace(".", "<IMG SRC="images/digit_point.gif" WIDTH="6" HEIGHT="18" ALT="" BORDER="0" VSPACE="7">", $average_user_review); return($average_user_review); }
View Replies !
View Related
Problem Displaying Images As Thumbnails
Im having problems displaying my images as thumbnails in a table. My code for producing the new width and height from the original image is as follows ************************************************** if ($ImagePath) { //$Image = WEB_ROOT . 'images/PupilTester/' . $ImagePath; $Image = 'images/PupilTester/' . $ImagePath; } else { $Image ='images/PupilTester/nopicture.bmp' } $size = getimagesize($image); $height = $size[1]; $width = $size[0]; if ($height > 150) { $height = 150; $percent = ($size[1] / $height); $width = ($size[0] / $percent); } else if ($width > 150) { $width = 150; $percent = ($size[0] / $width); $height = ($size[1] / $percent); } //echo "<img src"image/path/image.jpg" height="$height" width="$width" />"; ************************************************** ************ and in my table to display the thumbnail I have ************************************************** ************ <td rowspan="5" valign="top"><div align="left"><img src=<?php echo $Image; ?> width= <?php echo "$width"?> height= <?php echo "$height"?>> </div></td> </tr> ************************************************** ************** However the images are not showing at all. The cells of the table are blank. But if I use ********************************************* <td><img src=<?php echo $Image; ?>></td> </tr> ******************************************* The images show full size as normal. Can anyone see where Ive gone wrong
View Replies !
View Related
Displaying Inline Images Thru MySQL
I run a board that runs the Invision Board program. We are a photography forum, so lots of images get posted. IPB places all uploaded images and the GD-created thumbnails in one directory... right now there are over 40,000 files in there. We would like to archive the older images in a different place, so I devised a script that uses a coped table from the database with all rows without a image post deleted. The problem I have is that the database cross-references the original filenames with the new names they are given on the server. DSC_1000.JPG would get renames to "post-107-12382148343984.jpg" for instance. We would prefer to keep those "post" names for security, but would like to duplicate the method IPB uses to display the images with the file saving as the original (DSC) filename. Dissecting the IPB code returned nothing I can use nor figure out without a complete re-write of my script. So how would one go about opening a file depending on the query string, and place the real name of the file into the header dynamically? I have tried the following, and other derivations, but keep getting errors: PHP Code:
View Replies !
View Related
Making Images Smaller, And Displaying Them!
I've managed to build two web pages, one that can display images with associated text data in a table, and one that can resize and display images without the text. I'd like to resize the images as I go, without writing them to disk on the server. Do I need to prepare all of the resized images before I display the data from the select (which is put into an array by php). How can I display a resized image in a table, without writing it to disk first? I could get around this problem by creating smaller images in the windows app (non web) but I cannot find anything to do this. If you know of a dll or ocx etc that I could use,
View Replies !
View Related
Displaying Images In Php Created Emails
I have created a php script that sends html emails and attachements. I couldnt figure out how to send an html email so that when the reciever opens his email, the images are displayed in the table and not as seperate attachements. I have used both activemaillib and php's mail function The only way I succeeded was using hyperlinks in the table that fetches the email from a server, but some people download emails, close their internet connections and then read their emails.
View Replies !
View Related
Problem Displaying Images With Php And Mysql
I am uploading images to a server and saving the script location to a mysql database. It is loading into the server. When I call it with PHP it doesn't show up. When I try to access it directly I get a an error stating that this directory is restricted without an index file. I added an index file, but it made no difference. The directory is set to 777. Also, I manually changed the chmod on the image to 777 and now I am getting a "page not found" error. here is the upload code:
View Replies !
View Related
Uploading And Displaying Multiple Images
I am building a website where people can post jobs that need to be done and have laborers bid on them.... Im done with pretty much everything on the site but im having a hard time figuring out how to upload and display multiple images for each job.... I am able to upload and display one image but i can upload multiple images.... Everytime I try to do so, It only displays multiple copies of the first image that i upload. Code:
View Replies !
View Related
Images Not Displaying When Using $_SERVER['DOCUMENT_ROOT']
I'm trying to display images using the file name appended to the document root using $_SERVER['DOCUMENT_ROOT'], so that i can call an image from any folder throughout the site, without having to worry which folder the page is in (eg if the image is in the folder www/uploads and the script is in the folder www/admin). The problem i have is that the images are not displaying, although the alt text displays, and right clicking on the image gives the correct filename and path. It doesn't not seem to matter whether i'm using my locally hosted files (for testing) or files on my website. $root = ($_SERVER['DOCUMENT_ROOT']); <img src="<?php echo $root . $oldname; ?>" alt="<?php echo $alttext; ?>" /> Does anyone have any ideas?
View Replies !
View Related
Displaying Images From MySQL Databases.. .
Although I was able to successfully retrieve and view images using the provided tutorial code, upon adapting it for my code I am encountering a problem. I'm supposed to retrieve the image [stored as a BLOB] along with some other form data, but instead of displaying the image, I'm just getting a large chunk of binary text. Code:
View Replies !
View Related
Script For Displaying Webcam Images
I'm looking for some php code to display images from a webcam. I've looked extensively for this but all the code examples I found require the image name to stay constant, with the image being updated via ftp by the webcam. BUT the type of webcam I have to use creates a new image for each FTP update. So you end up woth lots of differently named images. Also the image names are not sequential so you can't do a simple loop through variable names.
View Replies !
View Related
Include Subdirectory - Images Not Displaying
I have a page named printdocs.php that needs to include multiple .html pages into one page for printing purposes. The printdocs.php page looks like this: include('documents/100/100.html'); include('documents/101/101.html'); include('documents/102/102.html'); Each one of the .html files I'm trying to include has relative references to images (i.e. 100.html has <img src="100-101.jpg" />). When I use the above include functions, the html outputs properly but the images do not display. Note: I cannot change the code in the included .html files. Is there a way to get the images to display?
View Replies !
View Related
Displaying Images Form A Directory
I am trying to figure out how to display a bunch of images (mainly JPEGs, but possibly a few GIFs and PNGs as well) that are stored in a local directory on the system. I can do this with the glob() function, but I can't seem to put in a directory other than one within the webroot.
View Replies !
View Related
Photo Gallery - Displaying Comments For Images
I have simple script that selects all the photos out of a folder that i direct it to and displays them in a simple galley, I want to be able to have comments displayed for each photo which are in a database.. I have the following code at the moment where $PhotoName is out of the database from a select * from Table WHERE photo group (linked to photo) is equal to the one selected... The problem is this is displaying comments for images on every one and for some reason the if ($images[$i] = $PhotoName) is not working. PHP Code:
View Replies !
View Related
Java Script Code For Displaying Images In PHP?
I have this java script code that updates the "img src" tag of my images on the page... <script Language="JavaScript"> function showupdate(photo){ document['bigPhoto'].src = photo;} </script> Now, is there any way to write this code in PHP (not in Java Script), since I want to save that "photo" variable for later use and manipulation... ???
View Replies !
View Related
Displaying A Varying Number Of Images.. In Tables?!
I'm building a news system. I have a page to display all posts made to category=$id, simple enough, now I wanna make an index page that looks up all the categories from the news_topics table, displays their name, a link to their page, and the image assigned to that category. Here's the catch: I wanna put this in a table as the images are only a few hundred pixels wide, so a flat list of each image would be boring and inefficient. The thing is, we may add/remove news categories over time, so how can I deal with this? Would it really be easier to manually make this in HTML and change it as/when we make modifications to the topics table?
View Replies !
View Related
Simple Question On Retrieving And Displaying Images.
I have a database for displaying the names of bed and breakfasts searched for by the town they are in as below. <?php $result = @mysql_query ("SELECT name FROM site01_details WHERE town='$townsearch' AND code='sleep'"); while ($row = mysql_fetch_array($result)) { echo '<p>' . $row['name'] . '</p>' } ?> I want to also insert an image (of the premises for example) for each bed and breakfast found. Assuming a code in each database entry is actually the exact image name, and all are stored in /images, and all of JPG format and fixed size, how can I insert the image for each search result found.
View Replies !
View Related
Empty Cells
I am using the is NOT NULL, to select fields that have something in them. However when some of the data is dumped in the NULL is not getting put in there. I have the cell set to default NULL, but sometime is puts nothing in there. Is there another way to select only the fields that have something in them.
View Replies !
View Related
Formatting Excel Cells
Is it possible to format the cells of excel spreadsheet using php. I download a excel spreadsheet from webpage which is passed thro the headers. I want to format the cells in this manner using php. This is the code in VB. Code: Range("A1:K1").Select Selection.Font.Bold = True Selection.Font.ColorIndex = 15 Selection.Font.ColorIndex = 9 With Selection.Interior .ColorIndex = 48 .Pattern = xlSolid End With
View Replies !
View Related
Multiple Table Cells
I'm working on a PHP/MySQL project. My site will include a gallery section where potential clients can see the painters work. He wants to include one page that will show thumbnail images of all of the portfolio images clicking on the thumbnail will take you to the full size image. That in itself is a pretty easy task. The challenge was that he wants to show the thumbnails in a table with three cells in each row. e.g. below | RESULT 1| RESULT 2| RESULT 3| | RESULT 4| RESULT 5| RESULT 6| etc Can you please assist me in finding the right looping syntax so that every time it loops round it will display a <tr> with three <td>'s and then once you have the first three, it will display another <tr> and continue until its complete. It would also have to work for when there is less than three. This means 3 on first row, and 2 on second row for example.
View Replies !
View Related
Linking Cells For Run-on Text
I have a table which is divided into 2 row, the first containing 2 columns, the second containing 1 column (spans the width of the two above). Anyway I have a picture in the left-hand side column of the first row and then text next to it. The text is too long to fit just in the column beside, so needs to go underneath. What I was wondering was if there was any way to get the text to automatically run on into the second row because at the moment I have to phsyically chop the text up.
View Replies !
View Related
Splitting Text Across Cells
I've got some news articles that I've uploaded into a database which have seperate sections of course, title, author, primer, story ect. I'm looking for a way to split the story section over two or more table cells in the page. Basically it's like a news paper where the first column contains the primer, author, author e-mail, and then the first part of the story. I need to be able to specify how many characters to display in the first column (and make the last word whole!) then specify the rest of the string to start in the next column or table cell.
View Replies !
View Related
Export MySQL To Certain Excel Cells
I have .xls files that I want to be able to export MySQL data into. Is there a straightforward way to do this...I'll really only be inputing 2-3 values. So pretend I have: $test1 $test2 $test3 And I want to export them into test.xls in cells A1, A2, A3. Can someone provide the method for doing this?
View Replies !
View Related
Use Of The Range Function To Go Through Excel Cells
I have been trying to access an excel spreadsheet using PHP. I finally had a break through using the following code: <?php $filename = "C:wampwwwExcel est.xls"; $sheet1 = "engine"; $excel_app = new COM("Excel.application") or Die ("Did not connect"); //print "Application name: {$excel_app->Application->value}" ; //print "Loaded version: {$excel_app->Application->version}"; $Workbook = $excel_app->Workbooks->Open("$filename") or Die("Did not open $filename $Workbook"); $Worksheet = $Workbook->Worksheets($sheet1); $Worksheet->activate; $excel_cell = $Worksheet->Range("A4"); $excel_cell->activate; $excel_result = $excel_cell->value; print "$excel_result"; #To close all instances of excel: $Workbook->Close; unset($Worksheet); unset($Workbook); $excel_app->Workbooks->Close(); $excel_app->Quit(); unset($excel_app); ?> The problem lies within the range function. Right now I have range('A4') and that echos out cell A4, which is great, but now I would like to loop through more cells. So if I type in range("A4", "A7") I would now see all the data within those 4 cells. I know I need to use a foreach loop but I keep getting a class error.
View Replies !
View Related
PHP Code Inside Of Mysql Cells
I am building a dynamic section, but within each cell I would like to have php code. Everytime I echo it onto a page, the code comes out unrendered. ex: <? $str = $row['desc']; //$str = 1 2 3 <?php echo "4";?> 5 echo $str; ?> results in: 1 2 3 <?php echo "4";?> 5 I would like it to echo 1 2 3 4 5 How would I do this, if possible.
View Replies !
View Related
How To Make Text Wrap In Table Cells?
I don't understand this at all. I have a table with fixed width and height in pixels. Yet when I place a long text string in a cell, the cell expands as far as needed to the right or left to fit the string on one line. This is driving me quite mad. How do I ensure that a long string is displayed in a neat, orderly fashion? My question has nothing to go with wrapping text around images. I just simply need to have text wrapped!
View Replies !
View Related
Empty HTML Table Cells Have No Borders, What Do You Do?
When I first start using databases and dynamic content, I noticed that when you use table borders in your designs and if the database column/row doesn't have any info the html table outputed looks funny. I was wondering how you handle this. I use a function that puts a clear gif image. Code: //This function is used for replacing an empty var with a clear gif 1px X 1px function replace_empty($vars) { if ($vars =="") { $vars = "<img src='images/clear.gif' width=Ƈ' height=Ƈ' alt=''>"; } echo $vars; } //End function replace_empty Or you could use some CSS like "empty-cells: show"
View Replies !
View Related
Print Table Cells To Fill In The End Of A Calendar
I have a variable called $rowCount that keeps track of how many total cells have been added to a table. Its actually the month view of a calendar. I need to print blank cells representing the days of the next month to fill in the cells and make the grid complete. I am almost there, I just need to figure out how to make it stop printing new cells when the $rowCount variable becomes divisible by 7. That would mean that all table rows have 7 columns, and the grid is complete. here is what I tried so far, but this just keeps printing the cells, never stopping. PHP Code:
View Replies !
View Related
Extract Html Table Cells And Put To An Array
i have a table like: <tr><td>headA</td><td>headB</td><td>headC</td><td>headD</td></tr> <tr><td>1a</td><td>1b</td><td>1c</td><td>1d</td></tr> <tr><td>2a</td><td>2b</td><td>2c</td><td>2d</td></tr> <tr><td>3a</td><td>3b</td><td>3c</td><td>3d</td></tr> <tr><td>4a</td><td>4b</td><td>4c</td><td>4d</td></tr> where there can be any number of rows and there can be any number of columns. how can i read through this and create an array for each row, and use the header row as the keys. ie have it something like: QuotemyArray[0] = array( 'headA' = '1a', 'headB' = '1b', 'headC' = '1c', 'headD' = '1c', ); myArray[1] = array( 'headA' = '2a', 'headB' = '2b', 'headC' = '2c', 'headD' = '2c', ); etc....
View Replies !
View Related
Showing Only X Number Of Characters For Certain Cells In Result
I'm trying to create a block to show a random result for a testimonial script I am writing, and I've got the random result working a-ok, but I have a problem: For both the title and testimonial content, I need to limit the result so if something is way too long, it won't stretch the block to a size that messes up the page. The title seems straight forward, but the testimonial body will be tougher to do. I allow URL's and simple html like bold, italicize, etc. How can I: 1) do a simple limitation of the title & 2) limit the testimonial body, but let the script know that it's not to break html, i.e. either allow the result to continue until it gets to the ending tag, or stops early so it doesn't get a start tag in HTML if the character limitation won't allow it to get to the end tag. Would it be much better just to strip the tags completely?
View Replies !
View Related
|