Current location: Hot Scripts Forums » Programming Languages » PHP » Need help with strip_tags


Need help with strip_tags

Reply
  #1 (permalink)  
Old 03-18-04, 08:35 PM
sky4est sky4est is offline
Newbie Coder
 
Join Date: Mar 2004
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
Need help with strip_tags

I'm trying to build a select list from an array and the database has HTML in the field that I'm using but when I use strip_tags it pulls nothing from the database. If I remove the strip_tags everything works fine. Do you have any suggestions, here is the code:


$result1 = mysql_query("select * from events where season = 2003 order by event_title asc");
$result1 = strip_tags($result1);
while($row = mysql_fetch_array($result1))
{
echo ("<option label='" . $row["event_title"] . "'" . "value='eventName1'>" . "</option>");
}


-Sky
Reply With Quote
  #2 (permalink)  
Old 03-18-04, 10:56 PM
jewellgr jewellgr is offline
Wannabe Coder
 
Join Date: Aug 2003
Location: Michigan USA
Posts: 111
Thanks: 0
Thanked 0 Times in 0 Posts
It appears that you are only taking one variable from $result1.
I dont believe that you can strip tags from a whole array.
So just strip tags for each array element like so:
PHP Code:

$result1 mysql_query("select * from events where season = 2003 order by event_title asc"); 

while(
$row mysql_fetch_array($result1)) 
{
echo (
"<option label='" strip_tags($row["event_title"]) . "'" "value='eventName1'>" "</option>");

I havent tested it but it should work.
__________________
ArecaWeb Team
Gregg Kenneth Jewell
Reply With Quote
  #3 (permalink)  
Old 03-19-04, 10:27 AM
sky4est sky4est is offline
Newbie Coder
 
Join Date: Mar 2004
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
Thumbs up That's It

Thanks a lot man!
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump


All times are GMT -5. The time now is 10:20 AM.
vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.