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: *

  • Users: schoch
  • Content: Threads
  • Order by date
  1. schoch

    Restricting Access to Page

    I have created a login page with the usual login details from the server behaviour options. On an interior page of the restricted area I have an extra area that I need only to allow users with admin priveledges. However when apply this it does not let anyone in? Why is this happening? Any ideas?
  2. schoch

    Displaying session variable

    I can view the username, but the password cannot be displayed on the page. This is a login form and I want to be able to display the password on one of the interior restricted pages. however it doesn't seem to be registering the variable. The username can be displayed but not the password, why...
  3. schoch

    regester session variables

    I can view the username, but the password cannot be displayed on the page. This is a login form and I want to be able to display the password on one of the interior restricted pages. however it doesn't seem to be registering the variable. <?php // *** Validate request to login to this site...
  4. schoch

    session variables

    I want to add the username to each page in a restricted login area. I have created a session variable named username. How do I display it. the code is as follows: <?php session_start(); $MM_authorizedUsers = ""; $MM_donotCheckaccess = "true"; // *** Restrict Access To Page: Grant or deny...
  5. schoch

    Adding numbers in cells

    I usually work in php and was told I could not add cells to total automatically. I need help with javascript as I now nothing. I hope this makes sense! I want to tally up the numbers inputted in each cell for the specific column e.g. CODE <input name="md1" type="text" id="md1" size="10" />...
  6. schoch

    Adding Numbers

    I want to tally up the numbers inputted in each cell for the specific column e.g. <input name="md1" type="text" id="md1" size="10" /> and <input name="md2" type="text" id="md1" size="10" /> =<input name="md_total" type="text" id="md_total" size="10" value="<?php $md1=md1; $md2=md2...
  7. schoch

    Insert data into Multiple tables

    Hi I want to insert data into a couple of tables. I can insert into one table but am having trouble inserting into multiple. The code I have is as follows. Do I use an Inner Join? <?php function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") {...
  8. schoch

    Creating a loop which increments each form input name

    Hi, I want to loop a form name. Incrementing it so that each field has the same input name with a number. It just isn't working, I am new to php so really need some help! <?php for ($cnt=1; $cnt<=; $i++) { echo "$cnt"; } ?> <tr> <td> <?php do { ?> <input...

Part and Inventory Search

Back
Top