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 Chriss Miller 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. nataly333

    sessio_start() doesn't work

    Thank you ! I made all the changes according to your list, and now it is working !!!! (form was OK, i just cut to much) Thank you again for your help and attention
  2. nataly333

    sessio_start() doesn't work

    If I run my code (login.php): <? session_start(); // MySQL connection if(!isset($usernameU) | !isset($passwordU)) { ?> <html> <head><title>Login</title></head> <body> <form action=&quot;<?=$PHP_SELF?><?if($QUERY_STRING){ echo&quot;?&quot;. $QUERY_STRING;}?>&quot; method=&quot;POST&quot;>...
  3. nataly333

    sessio_start() doesn't work

    I did it and it is working! It means, something wrong in my code? :(
  4. nataly333

    sessio_start() doesn't work

    Thank you! This is a good test. Unfortunately now my site isn't working now(something happened to this stupid host)and i can not check it. This is short version of my &quot;login&quot; page : <? session_start(); // MySQL connection ?> <html> <head><title>Login</title></head> <body> <...
  5. nataly333

    sessio_start() doesn't work

    When i used session_auto_start=1 flag in my php.ini, my site worked OK. Now i moved it to host (session_auto_start=0, and ,of course, i can not change it). I added session_start() function in my login.php, but sessions do not start. Any suggestions? Thanks
  6. nataly333

    Refresh page to update table contents(from MySQL)

    Thank You! I was stupid and blind... It is work! Thank You very much for all your help Nataly
  7. nataly333

    Refresh page to update table contents(from MySQL)

    This is my code: <? include(&quot;shared.inc.php&quot;); global $PHP_SELF; ?> <html> <head><title>My Site</title> <meta http-equil=&quot;refresh&quot; content=&quot;30;url=<? echo $_SERVER['PHP_SELF'] ?>&quot;> </head> <body bgcolor=#dfdfdf> <? $hostname=&quot;delta&quot...
  8. nataly333

    Refresh page to update table contents(from MySQL)

    That's very odd. It supposed to work, but it doesn't:( Is it depends on browser? I remember that it worked. I reinstall php and MySQL, and it stoped to work. But that is stupid: this is only html tag...? I am really in trouble...
  9. nataly333

    Refresh page to update table contents(from MySQL)

    I've tried your sudgections <meta http-equiv=&quot;refresh&quot; content=&quot;60;url=<?php echo $PHP_SELF; ?>&quot;> <meta http-equiv=&quot;refresh&quot; content=&quot;60;url=<? echo $_SERVER['PHP_SELF'] ?>&quot;> Unfortunately it doesn't work. Thank you for your help
  10. nataly333

    Refresh page to update table contents(from MySQL)

    Thank You very much! I tried something like: <META HTTP-EQUIV=&quot;Refresh&quot; CONTENT=&quot;3;URL=http://www.some.org/some.html&quot;> but it didn't work. Even if it work, it work only one time,is in't it? And i need refresh my page each 60 sec, all the time... Do you have any idea? Sorry...
  11. nataly333

    Refresh page to update table contents(from MySQL)

    I fill my table from MySQL tables. Each 1 minute i need to update table contents according to the changes in database(made by another people) Can i do it in php? And how? Thank you for any help

Part and Inventory Search

Back
Top