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 Shaun E 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: tiamat2012
  • Content: Threads
  • Order by date
  1. tiamat2012

    Table to Div - not working

    Hi everyone, I'm trying to convert a table into divs. to be EXACTLY the same. I'm using the Display: table property. Can anyone see why this isn't working? original table: <table width="729" border="0" align="center" cellpadding="0" cellspacing="0" class="center" style="clear: both;">...
  2. tiamat2012

    Pear Mail function not working?

    Can anyone take a look at this code and tell me why? require_once "Mail.php"; $from = "email@email.com"; $to = "email@toemail.com"; $subject = "Hi!"; $body = "Hi,\n\nHow are you?"; $host = "mail.earthlink.net"; $username = "username@earthlink.net"; $password = "password"; $headers = array...
  3. tiamat2012

    equivalent to php readfile?

    Anyone know something that does it? I can use include, but I think a readfile would be better, and the files I will be reading/including have a query string on them. Sincerely, Kerry
  4. tiamat2012

    cloak a query string

    Anyone know an easy way to do it? The only way I can think of it is somehow reading another php file like if I had something like "index.html?num=03" and then another page was "specialoffers" it would show the same data as the index.html?num=03 Anyone know? Sincerely, Kerry
  5. tiamat2012

    Sitemap based on XML?

    Hi everyone, I've made an xml sitemap using sitemapspal.com, and submitted to google and it's working fine. I thought this was all fine and dandy, but I would like to make a php page where people can view the sitemap. Does anyone know a script that can do this off the xml file I already have...
  6. tiamat2012

    embed linkable

    Hi, I'm trying to make an embed movie into something that you can click on. I did it by putting the href statement in it, but it doesn't change the cursor,which is a problem when someone doesn't know you can click on it. There also isn't a title tag for me to stick a "click me!" text in. Anyone...
  7. tiamat2012

    Copy data to cliboard using firefox

    Is it possible or probably? I'm just trying to get copy some code into their clipboard (similar to music video codes, except they're not music videos) I did it in IE, but that's much easier. Sincerely, Kerry
  8. tiamat2012

    asp schedule tasks?

    Is there anyway that I can schedule a task with ASP? Assuming that I have no visiters (so I can't do everything a page loads), and I'm doing it on a remote hosting (meaning I can't use cron, or any other files)? Anyone know? -Kerry
  9. tiamat2012

    Cookies with SSL?

    Hey everyone, I've encountered a problem that I'm supposed to have a 3 day cookie expiration for someone to login to a secure section of a website (using ssl) The code I'm using to set the expiration is dim dexpire dexpire = DateAdd("d",3,Now()) Response.Cookies.Expires=dezpire I've tried...
  10. tiamat2012

    change the selected option in select tag with php

    is it possible? I'm getting a bunch of values back from a database, but many of the values belong select tags, and they should simply be selected. The only way I can think of it is putting them into hidden form elements and then using javascript to do the rest, but I've heard that ASP and ASP...
  11. tiamat2012

    looping through selects

    Hey all, I was wondering if there were any way to loop through selects? It looks really sloppy to write out 12 different assignments, here's my code: document.MyForm.pic1.options[i] = new Option(picarray[i], picarray[i]); document.MyForm.pic2.options[i] = new...
  12. tiamat2012

    Firefox works, IE doesn't, CSS Display: none

    I'm trying to create a very easy menu for database entry, and depending on what is chosen in a select box, it displays different things. I'm using javascript to do the change, but it has more html and css then javascript, so I'll post all applicable code here (and as the title says, it works...
  13. tiamat2012

    graphic authentication

    Does anyone know how to do the letter scramblers on pictures for authentication? Thanks, Kerry
  14. tiamat2012

    an array of pictures, what datatype?

    Hey, I'm trying to make an array of pictures for instance, if someone was making a new item and said (in reference to cars) this car has 3 pictures, and then list them out. Is there a datatype or a recommended way of doing this? Or do I need to put a datafield for as many pictures as there...
  15. tiamat2012

    AJAX Tutorial

    I recently did an AJAX tutorial but it wasn't that great, it more just put code there and said it worked. Does anyone know a good way or place to learn AJAX? I know a bit of javascript and I think AJAX would enhance the pages I work on. -Kerry
  16. tiamat2012

    whitespace between border and element?

    Is it possible? I'm trying to put a 3px whitespace between the border of one of my divs and the border. If its not, should I just put a div around it with 3px margin with the border instead? Thanks, Kerry
  17. tiamat2012

    F8 does not pop up advanced startup menu

    It starts up the Boot Selection Popup Menu, and I've looked all over the place and I can't find a solution to get to the other one. I need to start up in safemode and this is the only way I see how, other than deliberatly crashing my computer which I would rather not do, any suggestions...
  18. tiamat2012

    reading an html file from separate site

    Hey all, Me and a couple others are running a few sites where we want to have a certain identical page. We want the sites to take that page from another server so we can change and upload it once and it changes all the other pages. The other file is an HTML file - no serverside scripting...
  19. tiamat2012

    reading a file from a separate server

    Hey all, Me and a couple others are running a few sites where we want to have the same page. We want the sites to take that page from another server, so that we can change and upload it once and it changes all the other pages. I don't know if that would fall into HTML or XHTML, or whether it...
  20. tiamat2012

    change php settings (without access to php.ini)

    Is there a standard way to do it? I heard .htaccess is deprecated, though I'm not quite sure. My webpage is giving me these errors: Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of [runtime...

Part and Inventory Search

Back
Top