Search results

  1. M

    how to put links on right and left side of page

    Hi. I usually create a table with three columns in one row : <table width="100%"> <tr> <td width="20%">Left Side</td> <td>Middle</td> <td width="20%">Right Side</td> </tr> </table> This code don't need css or php, just html. I hope this could help you. Bye. Greg.
  2. M

    Css background image

    Hi. You can use this : background-image:url("mypix.jpg"); So, if you want the image to be repeated, you can use : background-repeat:repeat-x; // x axis background-repeat:repeat-y; // y axis background-repeat:repeat; // x and y axis background-repeat:no-repeat; // neither x axis nor y...
  3. M

    Help me Making new Sign up Form to my website

    Yes, never store the password but a crypted password using the php function : crypt. And to decrypt the password, use the same function with a second argument corresponding to the password entered to be connected.
  4. M

    Help me Making new Sign up Form to my website

    Hi. To create user accounts, create first a database to store user data (login, password, and a field corresponding to the user permission to view your personal data which is set to 1 if the user is allowed or 0 if not). After this, you create a form in which user has to enter his/her login...
Top