ajicles Posted July 2, 2010 Share Posted July 2, 2010 Hello again, I need a little bit of help. I am trying to think of a way to use an if statement to change characters in a variable. Basically what I am saying is, I wanted to take say this: http://www.mywebsite.com/watch?v=Cy-YZ6H4sIE And change it in to this: http://www.mywebsite.com/v/Cy-YZ6H4sIE All it is removing is: watch?v= and replacing with: v/ If anybody could help me. Thanks again for helping me with my other questions. ~AJ I won't be back for 2 days to reply to any messages, until then thank you very much. Quote Link to comment Share on other sites More sharing options...
ajicles Posted July 2, 2010 Author Share Posted July 2, 2010 . Quote Link to comment Share on other sites More sharing options...
ZachMEdwards Posted July 2, 2010 Share Posted July 2, 2010 $str = str_replace('watch?v=', 'v/', $str); Quote Link to comment Share on other sites More sharing options...
ajicles Posted July 4, 2010 Author Share Posted July 4, 2010 Thank you very much. I plugged in the variables and everything works $str = str_replace('watch?v=', 'v/', $row[1]); Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.