Jump to content

Unknown User

Members
  • Posts

    16
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

Unknown User's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. I still don't understand the problem, is it the white parts inbetween the peices of information? You want a smaller gap? You want i should decrease the contrast??
  2. Err, i'm sure i do that. Add [quote]seesion_start();[/quote] at the top. Then, if you want their username for example. [quote]$_SESSION['username'][/quote]
  3. Huh, i'm suprised i didn't notice that, well it was 2AM. Well anyway, all the code in [code]if ($column <= 5) {[/code] copy below this [code]else { echo "</tr><tr>";  //this ends the row $column = 1;[/code] Then after ending the row, it will add the next item. There might be an easyer way but, y'know.
  4. Can't you just embed an if in the elseif statement you have, checking that its not equal to 0? [code]elseif ((! is_numeric($a)) || (! is_numeric($b)) || (! is_numeric($c)))   {     if( $a != '0' && $B != '0' && $c != '0')       {         echo " Please enter only numbers.";       }   }[/code] sorry if i'm completly wrong, new to php
  5. http://www.skgenius.co.nr I've never been so great at actually designing stuff. So before i go and add all of the content to this site (for it is current almost completely empty) What do you think? Suteki da ka?
  6. Okay, bit of a stab in the dark but while($info = mysql_fetch_array( $data )) try something like [code]$info = mysql_fetch_array( $data ); while($info['link'] > 0){ //all that other stuff $info = mysql_fetch_array( $data ); } [/code] so you set $info once before the loop starts to make sure you have somehting, then re-sets it at the end of the while loop rather than the beggining.
  7. Wow thats wierd, i only just started makeing my webpage and don't know to much, but perhaps if you gave each button its own name? <form method="post" action="index.php"> <button type="submit" name="submit1">push here</button> </form> ?? IDK
  8. Ah, all is well, you can now login, logout, if you go to the login page it remebers that you alreday have... aah, relax. Incase you where wondering, the site you've been so kindly helping me with is http://www.skgenius.co.nr it's contents are probably of no intrest to you but, y'know.
  9. Yeah i already had that part started. I only looked at PHP yesterday, and i didn't know you could have html below php, this makes things so much easier. Well it works now, thanks. And btw wildteen88 i notice you incredibly helpful around these here forums
  10. And it still reads all of the HTML below the php code? Hmm...
  11. Okay, so i got the member thing sorted now, but a members page, so far its just a html page. When the user logs in, they are redirected to it. But there's nothing stopping somebidy from putting the address into their browser and going straight to it. Is there anything i can do?
  12. I don't quite get it, how do i send an e-mail from email@somewhere.com to some other email address?
×
×
  • 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.