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: aidz98
  • Order by date
  1. aidz98

    CSS Gurus please oh please help me! bold font issue...

    uhmm... try this... b { font-weight: bolder; } you could even nest your <b> tags this way.
  2. aidz98

    new to php : pass query string to same form

    i agree with sleipnir's suggestion. use POST.
  3. aidz98

    new to php : pass query string to same form

    will you be overwriting the old query string with new values or the form input you're expecting separate from the values in the query string? If it were the latter, I'd suggest an easy way is to make a loop like this inside the form: foreach($_GET as $k => $v) { echo '<input...
  4. aidz98

    Start Program

    A cheap way to force open an application client-side like Word is to make a link with mime-type that Word normally opens. Problem, I guess, is text files will be displayed on the browser automatically. If you can configure all your browsers not to open plain text files and force open Notepad...
  5. aidz98

    Inserting into a database, HELP PLEASE

    $query = &quot;INSERT INTO info VALUES ('&quot;.$name.&quot;', '&quot;.$url.&quot;', '&quot;.$email.&quot;')&quot;; is just plain wrong, then. you have four fields to consider inserting to. you could rewrite that in two ways. (1) $query = &quot;INSERT INTO info (name, url, email) VALUES...
  6. aidz98

    Load External SWF

    i'm a flash newbie, so pardon the intrusion. can't you import one SWF as a clip in another for this purpose? i have no ActionScript XP yet, though.
  7. aidz98

    Executing Perl Script from within another Perl Script

    isn't that a cheap way of doing it? besides, why'd he wanna do it in the first place? if you're switching between browsers during that time, the content of the first one wouldn't even matter. why not then just get the output of scriptTwo.cgi by running it through scriptOne.cgi so that if there...
  8. aidz98

    Executing Perl Script from within another Perl Script

    tgus??? what did you just recommend? i've done something similar to this back when i was on a server that would not let my perl scripts end email. i had to write in ASP and pass information to that script. i'll get back to you when i get back to my computer at home, but i believe you should...
  9. aidz98

    How can I test page before uploading?

    we can tell, all right. you could view your page by opening the page in a browser. go to File > Open and go to the file that you wish to see. if you have server-side scripts, you could get a copy of Apache at http://www.apache.com/ and install it appropriately. if you truly are a beginner...

Part and Inventory Search

Back
Top