Jump to content

Timinator2000

New Members
  • Posts

    8
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

Timinator2000's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hello All. Looking for a whois script to adapt.. Here is what i have thus far: I have a lookup box in the flash portion of my website.. at this point if i hit search, the variable is carried over to a file called domain.php and the variable is echoed to the screen.. That's all i have at this point.. I have no clue where to go from here.. I would need to put that variable into a whois script i would imagine and I'm wondering if there are any simple scripts that you recommend using.. One that i would simply give my variable to, process script and echo answer to screen... any help would be much appreciated. Thanks. TIm.
  2. I agree with you.. I will see what I can do. Thanks for the input! Tim.
  3. Hello everyone. I am trying to make a table where the row heights are a snug as possible.. unfortunately, I can't seem to get anything to work.. Aside from using CSS.. is there any way to force a row height to snug up to text in the td cell? I even tried putting a line in the style in the header section but still no go.. It's frustrating to have a list in a table with such space between each row.. Ex. Edmonton Calgary Vancouver in my table viewed in IE, using font 12, there is so much unecessary space between each row.. Some html: <tr> <td width="3" height="0" valign="middle"><img src="/images/arr1.jpg" height="5" /> </td> <td height="0"> </td> <td width="190" height="0" valign="bottom"><div align="left"><span class="style13">CGI Bin </span></div></td> <td width="80" height="0" valign="bottom"><div align="left"><span class="style13">YES</span></div></td> <td width="80" height="0" valign="bottom"><div align="left"><span class="style13">YES</span></div></td> <td width="80" height="0" valign="bottom"><div align="left"><span class="style13">YES</span></div></td> <td width="150" height="0"> </td> </tr> Any ideas? Thanks.T
  4. Just wondering if anybody has any suggestions on improving the site.. Your comments are welcome. http://www.game-blaster.com Tim.
  5. The exit; did it.. i wanted the last header to run if the 2 header conditions were not met.. I didn't think that, if the 1st condition was met, that it would continue on to the last header... just learned something new today! Thanks for you help!
  6. Ok, I am having a hard time with the header function.. if you look at the script below, both the 2 first header functions work no problem upon given cirumstances.. but as soon as I add the last header function, the first header function does not work.. it always reverts to the last header.. what am i doing wrong? Thanks everyone. CODE: <? //------------------------------------------------------------------------------------------------------------------ // VARIABLE DECLARATION.. $username = $_GET['user']; $password = $_GET['password']; $Button = $_GET['Button']; //------------------------------------------------------------------------------------------------------------------ // FUNCTION LOGIN INTO LOGIN DATABASE function readdata() { ...deleted for posting purposes..} //------------------------------------------------------------------------------------------------------------------ if ($Button == "Cancel"){ @header("Location: http://www.xxx.com/Mainview.php?selected=poker"); } if ($Button == "Submit"){ !readdata(); $query="SELECT * FROM `login`"; $result=mysql_query($query) or die("Query failed: $query\nError: " . mysql_error()); $num_entries=mysql_numrows($result); mysql_close(); $i=0; while ($i < $num_entries) { $sqluser=mysql_result($result,$i,'user'); $sqlpass=mysql_result($result,$i,'pass'); if ($username == $sqluser && $password == $sqlpass) { @header("Location: http://www.xxx.com/test2.php"); } $i++; } } @header("Location: http://www.xxx.com/signin.php?flag=invalid"); ?>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.