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 TouchToneTommy 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. parthshukla

    Newbie ?: Form variables aren't passing?

    hi, try replacing $mytext1 with $HTTP_GET_VARS['mytext1'] or $_GET['mytext1'] and see what happens Parth
  2. parthshukla

    what does @ mean

    thanks for your answers....
  3. parthshukla

    what does @ mean

    hi guys, i am doing some examples from a book, and i can't work out when they say this @ $db = mysql_connect('localhost','root',''); mysql_select_db('users'); @ $query = "select from login where user=$user and pass=password('$pass'); the first thing i don't get is what does the sign @...
  4. parthshukla

    Newbie needs help with 'POST' variables

    guys i think the problem here is that, you get "Array" when try to print_r[$_POST] that means the data in their is an array, that's what i came up to few days ago and couldn't work out what to do, so i did this and worked perfectly... try it i specified the varibles like this put...
  5. parthshukla

    How do I use sessions to protect my pages?

    make a db called login and a table in it called users add two fields, one name and second pass, add your users in there, don't forget to use the function password for your pass field..... index.php <?php session_start(); //starts the session if (isset($HTTP_POST_VARS['userid']) &&...
  6. parthshukla

    this user logon works, perfectly

    hello guys, chech this one out it will do a lot if you are making an authorized area..... befor you write this make a table or a seprate database if you like in mysql... call it what you like, i have called in this example the databse login and the table usercheck make the table with two...

Part and Inventory Search

Back
Top