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: *

  1. Inssider

    outlook 2003 - outlook today button?

    Is there a way to display an outlook today shortcut in the navigation pane? So that I can see the button choices like: Outlook Today, Mail, Calendar, Contacts, Tasks Thanks!
  2. Inssider

    java applet + html form + local file writing?

    Hi I'm a fairly experienced programmer but have not had much exposure at all to Java. I've been trying to create a certain page within a framed site that would allow me to input 3 text items (via input type=text form) and have the information be written to a local file on the hard drive. Could...
  3. Inssider

    Opening ports on Mandrake 8.1?

    How do I open ports on a Mandrake 8.1 linux box? I have a network where one Mandrake 8.1 computer and a few Win32 computers are hooked up through a hub, and my cable modem is hooked up to the Linux computer. Now, I'm trying to create a Half-Life game server on my Linux computer, but it isn't...
  4. Inssider

    Changing an item's class with Javascript

    Thank you so much, Victor. Do you know a site that has a list of the Javascript element hierarchy, particularly in Internet Explorer?
  5. Inssider

    Changing an item's class with Javascript

    How can I make it so that by hovering the mouse over an item, it changes its class? I call a Javascript function through onmouseover(), but then I want the function to change the item's class. Does anyone know how?
  6. Inssider

    Forms and Stylesheets

    How can I set a separate and global style for different types of form inputs? For instance, a separate one for <INPUT type=checkbox> and <INPUT type=password>. I'd rather not have to go back through all my webpages and stick a class=checkboxform for all my different types of form inputs...
  7. Inssider

    Budge Computer Video Upgrade

    Thank you! I'm checking up on this, and will definitely mark your post as very helpful if that is indeed to solution. Thanks again.
  8. Inssider

    Budge Computer Video Upgrade

    Hi, I recently purchased a low-cost computer system about six months ago. It's 500 MHz, 64 megabytes RAM, and, what I'm concerned about right now, only has a four megabyte ATI Rage Pro Turbo video card (chip?). Unfortunately, the card is built into the motherboard, but the motherboard has a free...
  9. Inssider

    php mysql how do i jump to a specific row?

    Here's an example, hopefully you know enough PHP/MySQL to fit this to your personal needs: <HTML> <HEAD> <TITLE>News Page</TITLE> </HEAD> <BODY> <?PHP $getallnews=mysql(&quot;dbname&quot;,&quot;select * from newstable order by date desc&quot;); for($i=0;$i<3;$i++) {...
  10. Inssider

    How to hide MySQL user and password in php code?

    What do you mean by hide? If you're concerned about the end user being able to view your username/password through their browser, then don't worry, it won't show up at all. Everything's processed server-side.
  11. Inssider

    mail()

    mail($destination,$subject,$message,$other_headers) http://www.phpdeveloper.org/tutout.php?num=7 is a good tutorial
  12. Inssider

    submit by text link

    Thanks sophisticate! I wasn't aware of that exact route. By the way, is the onClick only supported by newer browsers? hz, you could of course then use php to process the inputted variable(s)
  13. Inssider

    submit by text link

    Well you could use a url querystring like <A href=&quot;mypage.php?myvariable=myvalue&quot;> but that's pretty much static unless you do some javascript content replacement.
  14. Inssider

    Execute code in textarea.

    Oh okay, (btw sorry I'm spamming =] ) I just quickly browsed your viewable directories, and I see two problems: 1.) In your demo file ( http://www.jmdwebdesign.nl/wm/demo/ ), where you're getting the stuff inside the textarea, the location of the page1.txt file has not been set correctly. It...
  15. Inssider

    Execute code in textarea.

    Either that or, as I just checked since the file does exist, you didn't set the permissions properly.
  16. Inssider

    Execute code in textarea.

    Oh hehe... That's not your PHP code you're seeing. That's the parser outputting errors to the screen, and its code is being reflected ASCII through the textarea instead of as html. So basically it can't find the file you're trying to open.
  17. Inssider

    Newbie question - Where to start?

    Hehe, no problem. The great thing about the PHP/MySQL/Apache community, partially due to its open-source system and Linux's success, is that there's always someone out there who has an answer and is willing to give it. It just takes some searching sometimes.
  18. Inssider

    Execute code in textarea.

    Well here's a way with cookies, which might be your best way if you A)don't need a database to actually store on the server what the user inputted, and B)if you don't really want to learn sessions, which isn't that hard but cookies are really rather simple in PHP. Actually, even if you do want...
  19. Inssider

    Execute code in textarea.

    Hmm not sure what you mean by this. If you mean you want to include pre-made text files that contain PHP code, then you can simply use an include function. Say I have a file called includefile.php. To include this, simply place the following line in your PHP code where you want to stick in the...

Part and Inventory Search

Back
Top