Jump to content

Eugene

Members
  • Posts

    126
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

Eugene's Achievements

Member

Member (2/5)

0

Reputation

  1. I ruled out the possibility of it being javascript because i disabled js, and nothing changed, its not css because the css is the exact same as the original file, and it cant be html cause thats also the exact same as the original file.
  2. http://crazy4dollars.com for some reason, when i view the the file from my hard drive, (no javascript) it looks ok, but when i view it online, i modified it obviously for the webpages purposes, and the input box gets resized from 35px height to 53px and the width goes from 166px to 184px, i dont know what is causing it, but i have a guess that its some javascript code that doesnt work with this input field or something. Reply as soon as ppossible, ANY help will be greatly appreciated. On a side note, i copied all the html as is, only difference is that there is javascript added to the online webpage. Thanks
  3. $page = ($page != '') ? $page : 'index' ; $page .= '.txt'; $page = preg_replace('%(?:\.\./)+%', '', $page); look at your preg_replace statement. Lets say the page = index page = index.txt you are then replace the "." with "" so your code is search for a file called indextxt, which doesn't exist.
  4. $text = "1d35m37.7s"; $ex = preg_split('/[a-z]{1}/i', $text); $d = $ex[0]; $m = $ex[1]; $s = $ex[2];
  5. You'll need to look into the following functions, for a calendar script. http://php.net/mktime http://php.net/date http://php.net/cal_days_in_month
  6. You are wrong, because it is not definite that the coin will have 500,000 heads, 500,000 tails. Thats only a probability that the can get at most.
  7. you sort of got it wrong, can you tell me that two tables you want to join?
  8. SELECT * FROM tblxxxx x JOIN tblyyyy y ON x.name = y.team WHERE x.name = '$view'
  9. Is $id defined. you should try $_GET['id'], although that will pose some security problems.
  10. <form method="post" name = "msgform" id = "msgform" onsubmit="return checkForm();"> <table width="400" border="0" cellspacing="1" cellpsending="2"> <tr> <td width="100">Firstname</td> <td><input name="firstname" type="text" id="firstname"></td> </tr> <tr> <td width="100">Lastname</td> <td><input name="lastname" type="text" id="lastname"></td> </tr> <tr> <td width="100">Age</td> <td><input name="age" type="text" id="age" ></td> </tr> <tr> <td width="100">Email</td> <td><input name="email" type="text" id="email"></td> </tr> <td width="100"> </td> <td> </td> </tr> <tr> <td width="100"> </td> <td><input name="send" type="submit" id="send" value="send Message"></td> </tr> </table> Should work.
  11. have you tried putting everything in quotes? For example: date("m/d/Y:h:i");
  12. $seconds = $timeStamp2 - $timeStamp2; $minutes = ($seconds / 60); $hour = (($seconds / 60) / 60); Don't hold me to this though, I just coded it in about 2 seconds.
  13. If I comment out that print_r, nothing appears then.
×
×
  • 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.