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 strongm 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. tsorik

    Selected option in drop down box

    I just answered my own question. Nothing like writing down your problem to get to thinking about it! Here's the solution: You need to pass the $gig_venue parameter as part of the url, i.e. <a href=&quot;edit_gig.php?gig_id=<? echo $row->gig_id; ?>&gig_venue=<? echo $row->gig_venue...
  2. tsorik

    Selected option in drop down box

    Hi, I am trying to set the selected option in a dynamically generated drop box using a variable passed from another page. Here's my code: $query_venue = &quot;select venue_name from venues&quot;; $query_result = mysql_db_query($db,$query_venue); for ($i=1; $i<=mysql_num_rows($query_result)...
  3. tsorik

    Formula Help

    How about: @Name([CN]; @UserName) DanT
  4. tsorik

    @MailSend... Including Fields in the subject.

    Try using + instead of : I find it easier to declare the fields first, ie to:=&quot;[Respondent]&quot; ; cc:=&quot;&quot;; bcc:=&quot;&quot;; subject:=&quot;New Request - &quot; + subject; remark:=&quot;&quot;; bodyfields:=&quot;You have received a new request from &quot; +name + &quot;.&quot...
  5. tsorik

    weekday function

    Hi, here's one I spent all last week on! I also have a field called 'hols' which does an @DbLoookup on a list of public holidays and deducts them as well. Good luck, DanT holidays:= @Text(hols); @Prompt([OK];&quot;Hols&quot;; @Implode(holidays;&quot;, &quot;)); REM &quot;Gets all the days...
  6. tsorik

    Coloring Shared Borders

    did you get rid of the cellpadding/spacing in your tables?
  7. tsorik

    I've lost my &lt;body&gt;

    Something has gone bung with a Frontpage intranet site I look after. The pages display okay, and the code is obviously on the server - i.e it's not displaying from cache - but when I try to edit the site there is nothing between the <body> tags. All the information in the <head> section is kept...

Part and Inventory Search

Back
Top