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 TouchToneTommy 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: tippytarka
  • Content: Threads
  • Order by date
  1. tippytarka

    robots roaming my site for email addresses

    i put together a script on a web page that allows people to submit a question. their question is inserted into my database and an email notification is sent to me. a month ago i had removed this page link from my main menu so it was on the server but not visible to my site visitors, but today i...
  2. tippytarka

    how do i auto create a webpage with username as its filename?

    hi, i'm trying to get my head around the better way to put together member profile pages for a dating website... having reviewed a few dating sites i've noticed that they have usernames or account id's appended to the urls of their member profile pages... for instance... www.dating.com/username...
  3. tippytarka

    validation to deny spaces in usernames and passwords?

    i'm trying to modify the validation of my registration form to stop users from entering spaces and blank info. can you help? here's my script... if ( $username_check == "" && $passwd == "" && $email_check == "" ) { $all_fields_empty ="register for free"; return...
  4. tippytarka

    how to load an image into a movieclip?

    so shameful... this has to be the esaiest thing to do and i searched google and this forum and can't find an answer... how do you load an image into a movieclip. not creating a blank movie clip but into a movie clip that you have created. so you can do some animation to it? btw, the image is a...
  5. tippytarka

    help with my simple function code

    can you see anything wrong in my code? the first 'if' works and the second 'else if' works, but the third 'else' just seems to output the first 'if'... this is confusing me??? function email_verify($email_database,$email_input) { if ($email_database == "") { $email_none ="please...
  6. tippytarka

    how to put an img src tag around a variable?

    i'm trying to create a img src tag around a variable.. for example... $target_path_2 is a path to an image file in a directory ... photos/test.jpg this gets entered into my database, when recalling the path from my database i'm trying to put an image tag around it and put into a new variable...
  7. tippytarka

    using htaccess and php for members login

    i'm designing a site with a members login and i've been reading up using .htaccess to secure directories and content. so here's my question.... i've already coded the script for the login where my usernames and passwords are stored in a mysql database. here's the script... <? $user =...
  8. tippytarka

    help with login redirect

    i dont know why but my when my script gets to this part it wont redirect. it just stays in the script ...for example, this script is on a page called login_user.php and i want it to redirect to www.example.com. if i get the login name incorrect it echos 'wrong'. if i get the login username and...
  9. tippytarka

    flash swf file viewing problems across pc's

    something very strange is happening with a swf file. On my pc everything looks ok and on a friends pc it also loads fine... however, on other selected pcs only part of the animation/ content appears and then it goes black (no loop). initial thoughts were that the pcs that couldn't display it...
  10. tippytarka

    basic banner question... creating a url click

    i cant believe i dont know how to do this, but its my first time creating a banner and i dont know how to... 1) create the url link when clicking anywhere on the banner 2) create a mailto instead of clicking through to a site can anyone help? cheers
  11. tippytarka

    adding drop down menu links to each page

    i'm not sure if this is a solution that requires css, xml or both, but i would like to have a css or xml script that i can add page links to. this will allow me to update the links on each of my html pages by using just one page of script. i would also like to use a drop down menu where you can...
  12. tippytarka

    need help to activiate the buttons on a menu scroll??

    i successfully created a scroll menu from a tutorial... but the tutorial failed to instruct how to apply the geturl to each button. the menu vertically scrolls with a mouse over.... each button was placed into a movie clip and the actionscript scrolls the movie clip. but where do i place the...
  13. tippytarka

    create url links from an xml file loaded into a textfield?

    ok this is what i what like to do but want to know if it is possible... i have the following XML file.. <artist> <name>zionnoiz</name> <url>roster_02_artists_zionnoiz.swf</url> </artist> <artist> <name>shameless</name> <url>roster_02_artists_shameless.swf</url> </artist> <artist>...
  14. tippytarka

    how to break results of a loop onto a new line

    hi.. i've produced this script to load and loop through an XML file ////init TextArea component menu.html = true; menu.wordWrap = true; menu.multiline = true; menu.label.condenseWhite=true; ////load css nomadStyle = new TextField.StyleSheet(); nomadStyle.load("nomadstyles.css")...
  15. tippytarka

    button works on swf file but not when swf file is in html doc??

    i created a button that loads a movie... on (release) { loadMovieNum("roster_videos.swf", 1); } the button works on the swf file but nothing happens when i click on the button when the swf file is embedded into my html doc????
  16. tippytarka

    trouble loading a movie when by clicking a button

    ok this is really bugging me, i'm newish to flash and i'm trying to load a movie by clicking onto a button. by using this code the movie loads automatically... loadMovieNum("roster_videos.swf", 1); then if i assign the following code to a button that i've created... on (release) {...
  17. tippytarka

    make one element loop without making enitre movie loop?

    i'm trying to make one element continue looping without making the entire movie loop... here's what i mean.. i have a layer that i've name actions which i've asigned a stop(); to at the end of the animation. but i want the red pulsating dot to continue looping/ animating ... to give you an even...
  18. tippytarka

    my sound loop is not looping correctly???

    so i've imported my loop into flash (and set it to loop), plus i've got my on and off buttons... everything is working fine except for the loop... when it loops it sounds like theres a tiny bit of space in between each play and i really dont know why this is happening and i would love to fix...
  19. tippytarka

    trouble exporting data using phpmyadmin

    i'm using a webhost to host my site and a mysql database. the only way to access the database is to use phpmyadmin. but, i'm having some trouble exporting data. this is what i've been doing... i run a query to return a particular result. then click on the 'export' tab then i select csv for ms...
  20. tippytarka

    how do i avoid my email script ending up in the junk folder??

    so i've set up my email script that emails to multiple recipients, and i'm using bcc to hide the list of email adresses. just one more thing to do .....how do i prevent my html email from ending up in the recipients junk mail folder????

Part and Inventory Search

Back
Top