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. WebProgrammerGoddess

    Chat Rooms

    Hi, I would try hotscripts.com, they seem to have alot of good code. I go there alot. Under PHP I got a few good chatroom code. Hope that helps! :-) WebProgrammerGoddess
  2. WebProgrammerGoddess

    <a href> as submit button

    I agree with Klae as far as having a server side script. I use PHP and when I want to pass a value with a <A href> tag I format it as follows: <A href=&quot;somepage.php?id=<?=$variable;?>&quot;> or if already inside a PHP block: echo '<A href=&quot;somepage.phpid=&quot;' . $variable . '>'...
  3. WebProgrammerGoddess

    php exeptions?

    Hi GroundZero -- I checked out your code and this is all I could find. Your code: while($i<=$NbRows); { odbc_fetch_row($result,$i); while ($j <=$NbFields) { $A=odbc_field_name($result,$j); $B=urlencode(odbc_result($result,$j)); print(&quot;$A$i=$B&&quot;); $j++; }...
  4. WebProgrammerGoddess

    Sending link to friend

    Hi, I was wondering does anyone know how to have a link on your PHP page that when clicked the person will be able to send the link to a friend. Kind of like referring a friend to the page. Any help would be great. Thanks in advanced :-)
  5. WebProgrammerGoddess

    html

    If you have PhotoShop - make the background transparent and then matte with the same color as the page it will be displayed on. Save the image as a .gif Hope that helps.
  6. WebProgrammerGoddess

    &lt;textarea&gt; tag does it have a value attribute

    I trying to have the <textarea> to be already popluate with text that the user can edit if they want. Is there anyway I can do that? I tried value=&quot;variablename&quot; but that didn't work. The variable name holds the text I want to display. Thanks in advanced. :-)
  7. WebProgrammerGoddess

    &lt;textarea&gt; tag does it have a value attribute

    I trying to have the <textarea> to be already popluate with text that the user can edit if they want. Is there anyway I can do that? I tried value=&quot;variablename&quot; but that didn't work. The variable name holds the text I want to display. Thanks in advanced. :-)
  8. WebProgrammerGoddess

    Allowing a user to only login in once.

    Is there a way in PHP that once a user is logged in. They can't go to another computer to log in again? I'm trying to eliminate concurrent sessions.
  9. WebProgrammerGoddess

    Java Development Tools

    Does anyone have any suggestions for a Java Development Tool to use. I have used JBuilder and I was wondering if there was anything cooler than that out there that would work with Windows and/or Linux. Any suggestions would be great. Thanks :-)
  10. WebProgrammerGoddess

    PHP with MySQL

    I'm coding with PHP and I'm doing a query using mysql_query(), a previous coder put a line of code in that calls the mysql_insert_id function and stores the value in a variable. this is how it looks: $insertid = mysql_insert_id(); My question is doesn't it have to have the name of the query, so...

Part and Inventory Search

Back
Top