Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Followyourbliss
  • Order by date
  1. Followyourbliss

    embed WM player but with a different skin?

    I found out that "no" you can not use skins with media player (embed) but if I could take control of the players buttons I could manage the same thing. I guess this should be in Javascript - so I posted the question there.
  2. Followyourbliss

    Take control of Windows Media Player buttons ???

    I have the following code that works great for streaming a web radio station. The problem I have is that the default WMP controls are displayed. Is it possible to turn off the visability of the player and use my own graphics to control it? Like having my own graphic for the play button? <OBJECT...
  3. Followyourbliss

    CSS Positioning Crap in Opera in Firefox - great in IE

    Rob, When you try the other browers - are they on the same monitor? Such as are you using computer A for IE and computer B for whatever Or are the browers on the same PC and thus the same monitor resolution?
  4. Followyourbliss

    embed WM player but with a different skin?

    Here is the code I currently have for a web radio station I'm toying with. <TD> <OBJECT> <embed type='application/x-mplayer2' pluginspage='http://www.microsoft.com/Windows/MediaPlayer/'Name='MediaPlayer' src='http://followyourbliss.homeip.net:8000' AutoStart=0 ShowStatusBar=1 volume=-1...
  5. Followyourbliss

    Using Top Left values of TD ?

    Vragabond you have saved my hair from being pulled out! I had forgotten that I could use the in-line within the TD tag. Here is what I ended up with: In the <head> I set an ID selector as #test {color: green; position: relative;} Then in the TD itself I put this: <td style="position...
  6. Followyourbliss

    Using Top Left values of TD ?

    Greetings, I have a table. One of the cells has a valign="bottom" and some text. Is there a way to put a <div> in the top left corner of the cell without changing the alignment of the cell itself. So that the div is up at the top and the text is still at the bottom. If I use top=0px the div...
  7. Followyourbliss

    Error 1045 for new XP install

    No, that's not it. But thank you. I tried different login's but nothing was working. Even tried 'root'. What I had to end up doing was to run the mysql command prompt (which I hadn't done before - I was just using the MySQL Administrator). Once I ran the MySQL Command Prompt it immediantly...
  8. Followyourbliss

    Error 1045 for new XP install

    I'm unable to make a connection using MySQL Administrator with a brand new install for xp. I get an access denied to "ODBC@localhost". I tried pinging and it pings. I tried copying the my.ini file to Windows. And I see that this is a common issue for newbie's like myself. I've used Mysql before...
  9. Followyourbliss

    Is this possible? - convert table to graphic

    OK, so it does have something to do with this multi-part mime thing I've been hearing about. I'll look into PHPmailer Thanks!
  10. Followyourbliss

    How to save current webpage as a file?

    So there no way to save the output of a php doc as another file? Or is it that you can't save the output as a mht doc? Good point about the server side thing though. Perhaps this is a job for javascript. Such as, once the page is served then a javascript runs to save it and then upload it to my...
  11. Followyourbliss

    How to save current webpage as a file?

    I had previously asked how to save a table as a graphic but I think the way I need to go is to simply take the webpage that the user see's and make a .mht file and save it on my server. Any suggestions where I could look or examples of code? Thanks, Follow Your Bliss
  12. Followyourbliss

    Is this possible? - convert table to graphic

    mht file = Web Archive or MHTML. Like when you go to Save As on your browser, you can select Web Archive "mht". I tried this and it works great, however I have no idea how to make php save the current enviroment as .mht
  13. Followyourbliss

    Is this possible? - convert table to graphic

    Thank you for that information. I just did some experimenting and I think the route I want to go is to save the php document as a ".mht" file to a database and send the newly created file via email. Is this possible? - to creat a mht document through PHP? -or should this be a new thread?
  14. Followyourbliss

    Is this possible? - convert table to graphic

    Is it possible to convert a table and all it's data including properties (such as background) and turn it into a picture. Perhaps a BMP or something. The purpose of this would then be to email the graphic (table and data). Thank you for any information, Follow You Bliss.
  15. Followyourbliss

    INSERT INTO mysql - text works, strings do not???

    1146 = missing table. Sure enough the table was mis-spelled. And...now it works! Error Trapping!!! What a concept. I'm going to try my original code (with the table name spelled correctly) and see if there was anything wrong with my syntax. Thank you again, everyone. This is a wonderful...
  16. Followyourbliss

    INSERT INTO mysql - text works, strings do not???

    DRJ - Great point! That's something I wouldn't have thought of and needs to be taken into consideration. herman - You're absolutly right, but this is no where near ready to go live. I'm just learning through game development :-) BabyJ - Thank you so much for posting the code in a format that...
  17. Followyourbliss

    INSERT INTO mysql - text works, strings do not???

    <?php $user = "followyo_New"; $pass = "New"; $user_name = $_POST['user_Name']; $user_email = $_POST['user_Email']; echo ($user_name); echo ($user_email); $conn = mysql_connect( "localhost", $user, $pass); $rs_db = mysql_select_db("followyo_mysql_db",$conn); $sql = "insert into...
  18. Followyourbliss

    PHP common practices - regarding log in.

    :-) OK that makes sense. Would you care for my Mother's Maiden Name as well? Thanks all! I will tinker with this a bit. Speaking of tinkering...I think I just parsed in my pants. - Bad geek humor.
  19. Followyourbliss

    PHP common practices - regarding log in.

    ...on second thought, If you don't have to log in, how do you make the connection to the database? IE what would the connection string be for no id and no password?
  20. Followyourbliss

    PHP common practices - regarding log in.

    See that was exactly what I needed to know. Perfect! Thank you. "You can send mysql queries without being logged in." Simple, to the point. ...but of course doesn't give me a warm feeling about the security at all. hmmm... what then is the purpose of having a login to mysql? Just structrual...

Part and Inventory Search

Back
Top